symport/e32/include/e32lmsg.h
changeset 1 0a7b44b10206
child 2 806186ab5e14
equal deleted inserted replaced
0:c55016431358 1:0a7b44b10206
       
     1 // Copyright (c) 1995-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\e32lmsg.h
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalTechnology
       
    21 */
       
    22 
       
    23 #ifndef __E32LMSG_H__
       
    24 #define __E32LMSG_H__
       
    25 #include <e32cmn.h>
       
    26 
       
    27 const TInt KMaxLocaleMessageText=0x80;
       
    28 //
       
    29 enum TLocaleMessage
       
    30 	{
       
    31 	EFileServer_Button1,
       
    32 	EFileServer_Button2,
       
    33 	EFileServer_PutTheCardBackLine1,
       
    34 	EFileServer_PutTheCardBackLine2,
       
    35 	EFileServer_LowPowerLine1,
       
    36 	EFileServer_LowPowerLine2,
       
    37 	EFileServer_DiskErrorLine1,
       
    38 	EFileServer_DiskErrorLine2,
       
    39 	ESoundDriver_Chimes,
       
    40 	ESoundDriver_Rings,
       
    41 	ESoundDriver_Signal,
       
    42 	EMediaDriver_DiskNameInternal,
       
    43 	EMediaDriver_DiskNameExternal1,
       
    44 	EMediaDriver_DiskNameExternal2,
       
    45 	EMediaDriver_DiskNameExternal3,
       
    46 	EMediaDriver_DiskNameExternal4,
       
    47 	EMediaDriver_DiskNameExternal5,
       
    48 	EMediaDriver_DiskNameExternal6,
       
    49 	EMediaDriver_DiskNameExternal7,
       
    50 	EMediaDriver_DiskNameExternal8,
       
    51 	EMediaDriver_SocketName0,
       
    52 	EMediaDriver_SocketName1,
       
    53 	EMediaDriver_SocketName2,
       
    54 	EMediaDriver_SocketName3,
       
    55 	ELocaleMessages_LastMsg
       
    56 	};
       
    57 
       
    58 class TLocaleMessageText : public TBuf<KMaxLocaleMessageText>
       
    59 	{
       
    60 public:
       
    61 	IMPORT_C TLocaleMessageText();
       
    62 	IMPORT_C TLocaleMessageText(TLocaleMessage aMessageNo);
       
    63 	IMPORT_C void Set(TLocaleMessage aMessageNo);
       
    64 	};
       
    65 
       
    66 #endif
       
    67