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.
31 #include <babitflags.h>
33 const TInt KFeatureUnsupported( 0 );
34 const TInt KFeatureSupported( 1 );
36 /** An enumeration for accessing feature status flags.
41 /** If set, feature is supported and available for use;
42 if not, feature is not supported.
44 EFeatureSupported = 0,
45 /** If set, feature is upgradeable. The feature is known to the device
46 but it must be upgraded to enable it. If a feature s blacklisted,
47 its upgradeable flag is unset.
49 EFeatureUpgradeable = 1,
50 /** If set, the feature is modifiable and may be enabled/disabled
51 at run-time. The initial flag values for such a feature flag are
52 defined in a ROM image obey file.
54 EFeatureModifiable = 2,
55 /** If set, the feature has been blacklisted, and may not be changed at
56 run-time. This also prevents a feature from being upgraded.
58 EFeatureBlackListed = 3,
59 /** If set, this flag Supported state is unknown at build-time and is
60 initialised at run-time by system software. The Feature Manager will
61 ignore the Supported flag in the file. A run-time call to RFeatureControl
62 will be needed to set the feature's supported flag. Look ups of
63 uninitialised features result in a KErrNotReady error code.
65 EFeatureUninitialized = 4,
66 /** If set, this flag is saved to the system drive when modified
67 preserving its value across reboots/power downs.
69 EFeaturePersisted = 5,
71 // Bits 6..23 Reserved for Symbian to define for future use, always zero.
73 // High byte bits are undefined, reserved for internal use
74 EFeatureReserved24 = 24,
75 EFeatureReserved25 = 25,
76 EFeatureReserved26 = 26,
77 EFeatureReserved27 = 27,
78 EFeatureReserved28 = 28,
79 EFeatureReserved29 = 29,
80 EFeatureReserved30 = 30,
81 EFeatureReserved31 = 31
85 /** An enumeration for checking feature change type.
87 enum TFeatureChangeType
89 /** Feature status not changed.
92 /** Feature status changed to enabled or disabled.
94 EFeatureStatusUpdated = 1,
95 /** Feature data changed.
97 EFeatureDataUpdated = 2,
98 /** Feature status and data changed.
100 EFeatureStatusDataUpdated = 3,
101 /** Not used, future: complex change occurred, reload all features.
103 EFeatureRediscover = 4,
104 /** Not used, future: new feature has been added to system.
106 EFeatureFeatureCreated = 5,
107 /** Feature has been deleted.
109 EFeatureFeatureDeleted = 6
114 Used by Feature Manager and its clients.
124 Needed by clients using the method
125 FeatureSupported( TFeatureEntry& aFeature ) of Feature Control API.
127 @param aFeature Feature UID.
129 IMPORT_C TFeatureEntry( TUid aFeature );
133 Needed by clients using the method
134 AddFeature( TFeatureEntry& aFeature ) of Feature Control API.
136 @param aFeature Feature UID.
137 @param aFlags Feature status flags.
138 @param aData Feature data.
140 IMPORT_C TFeatureEntry( TUid aFeature, TBitFlags32 aFlags, TUint32 aData );
145 IMPORT_C TUid FeatureUid() const;
148 Returns feature status flags.
150 IMPORT_C TBitFlags32 FeatureFlags() const;
153 Returns feature data.
155 IMPORT_C TUint32 FeatureData() const;
160 Used by Feature Manager.
162 IMPORT_C TFeatureEntry();
166 /** UID of the feature. */
169 Value of the feature status flags.
173 /** Data associated with feature. */
176 Reserved for future use.
177 Initialised to 0 on construction.
184 Defines the feature UID array.
186 typedef RArray<TUid> RFeatureUidArray;
189 Defines the feature entry array.
191 typedef RArray<TFeatureEntry> RFeatureArray;
193 #endif // FEATURECMN_H