epoc32/include/e32lmsg.h
author William Roberts <williamr@symbian.org>
Tue, 16 Mar 2010 16:12:26 +0000
branchSymbian2
changeset 2 2fe1408b6811
permissions -rw-r--r--
Final list of Symbian^2 public API header files
     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