symport/e32/include/e32std_private.h
changeset 1 0a7b44b10206
child 2 806186ab5e14
equal deleted inserted replaced
0:c55016431358 1:0a7b44b10206
       
     1 // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Symbian Foundation License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // e32\include\e32std_private.h
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalTechnology
       
    21  @released
       
    22 */
       
    23 
       
    24 #ifndef __E32STD_PRIVATE_H__
       
    25 #define __E32STD_PRIVATE_H__
       
    26 
       
    27 #ifdef __KERNEL_MODE__
       
    28 #error !! Including e32std.h in kernel code !!
       
    29 #endif
       
    30 
       
    31 #include <e32cmn.h>
       
    32 #include <e32cmn_private.h>
       
    33 
       
    34 /**
       
    35 @internalComponent
       
    36 */
       
    37 const TUint KLocaleLanguageKey = 0x10208903;
       
    38 
       
    39 /**
       
    40 @internalComponent
       
    41 */
       
    42 const TUint KLocaleDataKey = 0x10208904;
       
    43 
       
    44 /**
       
    45 @internalComponent
       
    46 */
       
    47 const TUint KLocaleDataExtraKey = 0x10208905;
       
    48 
       
    49 /**
       
    50 @internalComponent
       
    51 */
       
    52 const TUint KLocaleTimeDateFormatKey = 0x10208907;
       
    53 
       
    54 /**
       
    55 @internalComponent
       
    56 */
       
    57 const TUint KLocaleDefaultCharSetKey = 0x10208908;
       
    58 
       
    59 /**
       
    60 @internalComponent
       
    61 */
       
    62 const TUint KLocalePreferredCharSetKey = 0x10208909;
       
    63 
       
    64 /**
       
    65 @internalComponent
       
    66 */
       
    67 enum TLocaleFunctions
       
    68 	{
       
    69 	FnDummy,
       
    70 	FnAmPmTable,
       
    71 	FnCharSet,
       
    72 	FnCollTable,
       
    73 	FnCurrencySymbol,
       
    74 	FnDateSuffixTable,
       
    75 	FnDayAbbTable,
       
    76 	FnDayTable,
       
    77 	FnFoldTable,
       
    78 	FnLanguage,
       
    79 	FnLocaleData,
       
    80 	FnLowerTable,
       
    81 	FnMonthAbbTable,
       
    82 	FnMonthTable,
       
    83 	FnMsgTable,
       
    84 	FnTypeTable,
       
    85 	FnUniCode,
       
    86 	FnUpperTable,
       
    87 	FnShortDateFormatSpec,
       
    88 	FnLongDateFormatSpec,
       
    89 	FnTimeFormatSpec,
       
    90 	FnFatUtilityFunctions
       
    91 	};
       
    92 
       
    93 /**
       
    94 @internalAll
       
    95 */
       
    96 const TInt KMediaPasswordNotifyUid(0x10004c00);
       
    97 
       
    98 /**
       
    99 @internalAll
       
   100 */
       
   101 enum TMediaPswdNotifyExitMode {EMPEMUnlock, EMPEMCancel, EMPEMUnlockAndStore};
       
   102 
       
   103 
       
   104 /**
       
   105 @internalAll
       
   106 */
       
   107 struct TMediaPswdNotifyBase
       
   108 	{
       
   109 	enum TCardType {ECTMmcPassword} iCT;
       
   110 	TVersion iVersion;
       
   111 	};
       
   112 
       
   113 /**
       
   114 @internalAll
       
   115 */
       
   116 struct TMediaPswdSendNotifyInfoV1 : public TMediaPswdNotifyBase
       
   117 	{
       
   118 	// empty.
       
   119 	};
       
   120 
       
   121 /**
       
   122 @internalAll
       
   123 */
       
   124 struct TMediaPswdSendNotifyInfoV1Debug : public TMediaPswdSendNotifyInfoV1
       
   125 	{
       
   126 	TInt iSleepPeriod;							// us, -ve means maximum range
       
   127 	TMediaPswdNotifyExitMode iEM;
       
   128 	TText8 iPW[KMaxMediaPassword];
       
   129 	};
       
   130 
       
   131 /**
       
   132 @internalAll
       
   133 */
       
   134 struct TMediaPswdReplyNotifyInfoV1 : public TMediaPswdNotifyBase
       
   135 	{
       
   136 	TText8 iPW[KMaxMediaPassword];
       
   137 	TMediaPswdNotifyExitMode iEM;
       
   138 	};
       
   139 
       
   140 
       
   141 #endif
       
   142