sl@0: // Copyright (c) 1994-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 the License "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: // e32\include\e32std_private.h sl@0: // sl@0: // WARNING: This file contains some APIs which are internal and are subject sl@0: // to change without notice. Such APIs should therefore not be used sl@0: // outside the Kernel and Hardware Services package. sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: @released sl@0: */ sl@0: sl@0: #ifndef __E32STD_PRIVATE_H__ sl@0: #define __E32STD_PRIVATE_H__ sl@0: sl@0: #ifdef __KERNEL_MODE__ sl@0: #error !! Including e32std.h in kernel code !! sl@0: #endif sl@0: sl@0: #include sl@0: #include sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TUint KLocaleLanguageKey = 0x10208903; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TUint KLocaleDataKey = 0x10208904; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TUint KLocaleDataExtraKey = 0x10208905; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TUint KLocaleTimeDateFormatKey = 0x10208907; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TUint KLocaleDefaultCharSetKey = 0x10208908; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TUint KLocalePreferredCharSetKey = 0x10208909; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: enum TLocaleFunctions sl@0: { sl@0: FnDummy, sl@0: FnAmPmTable, sl@0: FnCharSet, sl@0: FnCollTable, sl@0: FnCurrencySymbol, sl@0: FnDateSuffixTable, sl@0: FnDayAbbTable, sl@0: FnDayTable, sl@0: FnFoldTable, sl@0: FnLanguage, sl@0: FnLocaleData, sl@0: FnLowerTable, sl@0: FnMonthAbbTable, sl@0: FnMonthTable, sl@0: FnMsgTable, sl@0: FnTypeTable, sl@0: FnUniCode, sl@0: FnUpperTable, sl@0: FnShortDateFormatSpec, sl@0: FnLongDateFormatSpec, sl@0: FnTimeFormatSpec, sl@0: FnFatUtilityFunctions sl@0: }; sl@0: sl@0: #ifdef SYMBIAN_DISTINCT_LOCALE_MODEL sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: enum TLanguageLocaleFunctions sl@0: { sl@0: FnDummy1, sl@0: FnMsgTableV2, sl@0: FnLanguageDowngradeTableV2, sl@0: FnAmPmTableV2, sl@0: FnDateSuffixTableV2, sl@0: FnMonthAbbTableV2, sl@0: FnLanguageV2, sl@0: FnFatUtilityFunctionsV2, sl@0: FnDigitTypeV2, sl@0: FnMonthTableV2, sl@0: FnDayTableV2, sl@0: FnDayAbbTableV2 sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: enum TRegionLocaleFunctions sl@0: { sl@0: FnDummy2, sl@0: FnShortDateFormatSpecV2, sl@0: FnLongDateFormatSpecV2, sl@0: FnLocaleDataV2, sl@0: FnTimeFormatSpecV2, sl@0: FnCurrencySymbolV2 sl@0: }; sl@0: #endif sl@0: sl@0: /** sl@0: @internalAll sl@0: */ sl@0: const TInt KMediaPasswordNotifyUid(0x10004c00); sl@0: sl@0: /** sl@0: @internalAll sl@0: */ sl@0: enum TMediaPswdNotifyExitMode {EMPEMUnlock, EMPEMCancel, EMPEMUnlockAndStore}; sl@0: sl@0: sl@0: /** sl@0: @internalAll sl@0: */ sl@0: struct TMediaPswdNotifyBase sl@0: { sl@0: enum TCardType {ECTMmcPassword} iCT; sl@0: TVersion iVersion; sl@0: }; sl@0: sl@0: /** sl@0: @internalAll sl@0: */ sl@0: struct TMediaPswdSendNotifyInfoV1 : public TMediaPswdNotifyBase sl@0: { sl@0: // empty. sl@0: }; sl@0: sl@0: /** sl@0: @internalAll sl@0: */ sl@0: struct TMediaPswdSendNotifyInfoV1Debug : public TMediaPswdSendNotifyInfoV1 sl@0: { sl@0: TInt iSleepPeriod; // us, -ve means maximum range sl@0: TMediaPswdNotifyExitMode iEM; sl@0: TText8 iPW[KMaxMediaPassword]; sl@0: }; sl@0: sl@0: /** sl@0: @internalAll sl@0: */ sl@0: struct TMediaPswdReplyNotifyInfoV1 : public TMediaPswdNotifyBase sl@0: { sl@0: TText8 iPW[KMaxMediaPassword]; sl@0: TMediaPswdNotifyExitMode iEM; sl@0: }; sl@0: sl@0: sl@0: #endif sl@0: