Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #ifndef FEATMGRCLIENTSERVER_H
21 #define FEATMGRCLIENTSERVER_H
25 #include <featmgr/featurecmn.h>
26 #include "featurepanics.h"
30 // Opcodes used in message passing between client and server
31 // Important: Make sure IsWriteOperation function of CFeatMgrSession
32 // is updated if a new enum for function that will modify
33 // feature (write operation) is added.
34 enum TFeatMgrServRequest
37 * Fetches information whether a certain feature is supported.
39 * 0: TFeatureEntry - Feature entry
40 * 1: TInt - ret - Returns feature support value (0,1) or error code.
42 EFeatMgrFeatureSupported = 0,
45 * Fetches information of subset of features support-status.
47 * 0: TInt - Count of features, notification will be requested
48 * 1: TPtr8 - Feature UID array (RFeatureUidArray)
49 * 2: TInt - Count of features in response.
51 EFeatMgrFeaturesSupported,
54 * Lists all supported features.
56 * 0: In return as a parameter received reference to the client owned
57 * RFeatureUidArray array contains Ids of all supported features.
59 EFeatMgrListSupportedFeatures,
62 * Number of all supported features.
64 * 0: TInt - err - Returns the number of all supported features.
66 EFeatMgrNumberOfSupportedFeatures,
69 * Request for single or subset of features notification.
71 * 0: TPtr8 - On change notification, server sets changed UID (TUid)
72 * 1: TRequestStatus - Request to be signaled.
77 * Uids associated with request for single or subset of features notification.
79 * 0: TInt - Count of features, notification will be requested
80 * 1: TPtr8 - Feature UID array (RFeatureUidArray)
81 * 2: TInt - err - Operation error code.
83 EFeatMgrReqNotifyUids,
86 * Request cancellation of single feature notification.
88 * 0: TUid - Feature UID
89 * 1: TRequestStatus - Request to be canceled
90 * 2: TInt - err - Operation error code.
92 EFeatMgrReqNotifyCancel,
95 * Request cancellation of all features notification.
97 * 0: TInt - err - Operation error code.
99 EFeatMgrReqNotifyCancelAll,
101 #ifdef EXTENDED_FEATURE_MANAGER_TEST
103 * Number of notify features.
106 EFeatMgrNumberOfNotifyFeatures,
109 * Number of allocated cells.
112 EFeatMgrCountAllocCells,
116 * Enables a certain feature.
118 * 0: TUid - Feature UID
119 * 1: TInt - err - Operation error code.
121 EFeatMgrEnableFeature,
124 * Disables a certain feature.
126 * 0: TUid - Feature UID
127 * 1: TInt - err - Operation error code.
129 EFeatMgrDisableFeature,
132 * Adds a feature entry.
134 * 0: TFeatureEntry - Feature entry
135 * 1: TInt - err - Operation error code.
140 * Sets a certain feature and associated data.
142 * 0: TUid - Feature UID
143 * 1: TBool - Feature enable or disable.
144 * 2: TInt - Feature data.
145 * 3: TInt - err - Operation error code.
147 EFeatMgrSetFeatureAndData,
150 * Sets certain feature's data.
152 * 0: TUid - Feature UID
153 * 1: TInt - Feature data.
154 * 2: TInt - err - Operation error code.
156 EFeatMgrSetFeatureData,
159 * Deletes a feature entry.
161 * 0: TUid - Feature UID
162 * 1: TInt - err - Operation error code.
164 EFeatMgrDeleteFeature,
167 * Software Installation started
173 * Software Installation ended
178 EFeatMgrResourceMark,
179 EFeatMgrResourceCheck,
180 EFeatMgrResourceCount,
181 EFeatMgrSetHeapFailure
187 #endif // FEATMGRCLIENTSERVER_H