sl@0: /* sl@0: * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef FEATMGRCLIENTSERVER_H sl@0: #define FEATMGRCLIENTSERVER_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: #include sl@0: #include "featurepanics.h" sl@0: sl@0: // DATA TYPES sl@0: sl@0: // Opcodes used in message passing between client and server sl@0: // Important: Make sure IsWriteOperation function of CFeatMgrSession sl@0: // is updated if a new enum for function that will modify sl@0: // feature (write operation) is added. sl@0: enum TFeatMgrServRequest sl@0: { sl@0: /** sl@0: * Fetches information whether a certain feature is supported. sl@0: * sl@0: * 0: TFeatureEntry - Feature entry sl@0: * 1: TInt - ret - Returns feature support value (0,1) or error code. sl@0: */ sl@0: EFeatMgrFeatureSupported = 0, sl@0: sl@0: /** sl@0: * Fetches information of subset of features support-status. sl@0: * sl@0: * 0: TInt - Count of features, notification will be requested sl@0: * 1: TPtr8 - Feature UID array (RFeatureUidArray) sl@0: * 2: TInt - Count of features in response. sl@0: */ sl@0: EFeatMgrFeaturesSupported, sl@0: sl@0: /** sl@0: * Lists all supported features. sl@0: * sl@0: * 0: In return as a parameter received reference to the client owned sl@0: * RFeatureUidArray array contains Ids of all supported features. sl@0: */ sl@0: EFeatMgrListSupportedFeatures, sl@0: sl@0: /** sl@0: * Number of all supported features. sl@0: * sl@0: * 0: TInt - err - Returns the number of all supported features. sl@0: */ sl@0: EFeatMgrNumberOfSupportedFeatures, sl@0: sl@0: /** sl@0: * Request for single or subset of features notification. sl@0: * sl@0: * 0: TPtr8 - On change notification, server sets changed UID (TUid) sl@0: * 1: TRequestStatus - Request to be signaled. sl@0: */ sl@0: EFeatMgrReqNotify, sl@0: sl@0: /** sl@0: * Uids associated with request for single or subset of features notification. sl@0: * sl@0: * 0: TInt - Count of features, notification will be requested sl@0: * 1: TPtr8 - Feature UID array (RFeatureUidArray) sl@0: * 2: TInt - err - Operation error code. sl@0: */ sl@0: EFeatMgrReqNotifyUids, sl@0: sl@0: /** sl@0: * Request cancellation of single feature notification. sl@0: * sl@0: * 0: TUid - Feature UID sl@0: * 1: TRequestStatus - Request to be canceled sl@0: * 2: TInt - err - Operation error code. sl@0: */ sl@0: EFeatMgrReqNotifyCancel, sl@0: sl@0: /** sl@0: * Request cancellation of all features notification. sl@0: * sl@0: * 0: TInt - err - Operation error code. sl@0: */ sl@0: EFeatMgrReqNotifyCancelAll, sl@0: sl@0: #ifdef EXTENDED_FEATURE_MANAGER_TEST sl@0: /** sl@0: * Number of notify features. sl@0: * sl@0: */ sl@0: EFeatMgrNumberOfNotifyFeatures, sl@0: sl@0: /** sl@0: * Number of allocated cells. sl@0: * sl@0: */ sl@0: EFeatMgrCountAllocCells, sl@0: #endif sl@0: sl@0: /** sl@0: * Enables a certain feature. sl@0: * sl@0: * 0: TUid - Feature UID sl@0: * 1: TInt - err - Operation error code. sl@0: */ sl@0: EFeatMgrEnableFeature, sl@0: sl@0: /** sl@0: * Disables a certain feature. sl@0: * sl@0: * 0: TUid - Feature UID sl@0: * 1: TInt - err - Operation error code. sl@0: */ sl@0: EFeatMgrDisableFeature, sl@0: sl@0: /** sl@0: * Adds a feature entry. sl@0: * sl@0: * 0: TFeatureEntry - Feature entry sl@0: * 1: TInt - err - Operation error code. sl@0: */ sl@0: EFeatMgrAddFeature, sl@0: sl@0: /** sl@0: * Sets a certain feature and associated data. sl@0: * sl@0: * 0: TUid - Feature UID sl@0: * 1: TBool - Feature enable or disable. sl@0: * 2: TInt - Feature data. sl@0: * 3: TInt - err - Operation error code. sl@0: */ sl@0: EFeatMgrSetFeatureAndData, sl@0: sl@0: /** sl@0: * Sets certain feature's data. sl@0: * sl@0: * 0: TUid - Feature UID sl@0: * 1: TInt - Feature data. sl@0: * 2: TInt - err - Operation error code. sl@0: */ sl@0: EFeatMgrSetFeatureData, sl@0: sl@0: /** sl@0: * Deletes a feature entry. sl@0: * sl@0: * 0: TUid - Feature UID sl@0: * 1: TInt - err - Operation error code. sl@0: */ sl@0: EFeatMgrDeleteFeature, sl@0: sl@0: /** sl@0: * Software Installation started sl@0: * sl@0: */ sl@0: EFeatMgrSWIStart, sl@0: sl@0: /** sl@0: * Software Installation ended sl@0: * sl@0: */ sl@0: EFeatMgrSWIEnd, sl@0: sl@0: EFeatMgrResourceMark, sl@0: EFeatMgrResourceCheck, sl@0: EFeatMgrResourceCount, sl@0: EFeatMgrSetHeapFailure sl@0: sl@0: }; sl@0: sl@0: sl@0: sl@0: #endif // FEATMGRCLIENTSERVER_H sl@0: sl@0: // End of File