epoc32/include/e32lmsg.h
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
equal deleted inserted replaced
3:e1b950c65cb4 4:837f303aceeb
     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" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.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 
       
    20 /**
       
    21  @file
       
    22  @internalTechnology
       
    23 */
       
    24 
       
    25 #ifndef __E32LMSG_H__
       
    26 #define __E32LMSG_H__
       
    27 #include <e32cmn.h>
       
    28 
       
    29 const TInt KMaxLocaleMessageText=0x80;
       
    30 //
       
    31 enum TLocaleMessage
       
    32 	{
       
    33 	EFileServer_Button1,
       
    34 	EFileServer_Button2,
       
    35 	EFileServer_PutTheCardBackLine1,
       
    36 	EFileServer_PutTheCardBackLine2,
       
    37 	EFileServer_LowPowerLine1,
       
    38 	EFileServer_LowPowerLine2,
       
    39 	EFileServer_DiskErrorLine1,
       
    40 	EFileServer_DiskErrorLine2,
       
    41 	ESoundDriver_Chimes,
       
    42 	ESoundDriver_Rings,
       
    43 	ESoundDriver_Signal,
       
    44 	EMediaDriver_DiskNameInternal,
       
    45 	EMediaDriver_DiskNameExternal1,
       
    46 	EMediaDriver_DiskNameExternal2,
       
    47 	EMediaDriver_DiskNameExternal3,
       
    48 	EMediaDriver_DiskNameExternal4,
       
    49 	EMediaDriver_DiskNameExternal5,
       
    50 	EMediaDriver_DiskNameExternal6,
       
    51 	EMediaDriver_DiskNameExternal7,
       
    52 	EMediaDriver_DiskNameExternal8,
       
    53 	EMediaDriver_SocketName0,
       
    54 	EMediaDriver_SocketName1,
       
    55 	EMediaDriver_SocketName2,
       
    56 	EMediaDriver_SocketName3,
       
    57 	ELocaleMessages_LastMsg
       
    58 	};
       
    59 
       
    60 class TLocaleMessageText : public TBuf<KMaxLocaleMessageText>
       
    61 	{
       
    62 public:
       
    63 	IMPORT_C TLocaleMessageText();
       
    64 	IMPORT_C TLocaleMessageText(TLocaleMessage aMessageNo);
       
    65 	IMPORT_C void Set(TLocaleMessage aMessageNo);
       
    66 	};
       
    67 
       
    68 #endif