0
|
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 "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
// e32\include\e32lmsg.h
|
|
15 |
//
|
|
16 |
// WARNING: This file contains some APIs which are internal and are subject
|
|
17 |
// to change without notice. Such APIs should therefore not be used
|
|
18 |
// outside the Kernel and Hardware Services package.
|
|
19 |
//
|
|
20 |
|
|
21 |
/**
|
|
22 |
@file
|
|
23 |
@internalTechnology
|
|
24 |
*/
|
|
25 |
|
|
26 |
#ifndef __E32LMSG_H__
|
|
27 |
#define __E32LMSG_H__
|
|
28 |
#include <e32cmn.h>
|
|
29 |
|
|
30 |
const TInt KMaxLocaleMessageText=0x80;
|
|
31 |
//
|
|
32 |
enum TLocaleMessage
|
|
33 |
{
|
|
34 |
EFileServer_Button1,
|
|
35 |
EFileServer_Button2,
|
|
36 |
EFileServer_PutTheCardBackLine1,
|
|
37 |
EFileServer_PutTheCardBackLine2,
|
|
38 |
EFileServer_LowPowerLine1,
|
|
39 |
EFileServer_LowPowerLine2,
|
|
40 |
EFileServer_DiskErrorLine1,
|
|
41 |
EFileServer_DiskErrorLine2,
|
|
42 |
ESoundDriver_Chimes,
|
|
43 |
ESoundDriver_Rings,
|
|
44 |
ESoundDriver_Signal,
|
|
45 |
EMediaDriver_DiskNameInternal,
|
|
46 |
EMediaDriver_DiskNameExternal1,
|
|
47 |
EMediaDriver_DiskNameExternal2,
|
|
48 |
EMediaDriver_DiskNameExternal3,
|
|
49 |
EMediaDriver_DiskNameExternal4,
|
|
50 |
EMediaDriver_DiskNameExternal5,
|
|
51 |
EMediaDriver_DiskNameExternal6,
|
|
52 |
EMediaDriver_DiskNameExternal7,
|
|
53 |
EMediaDriver_DiskNameExternal8,
|
|
54 |
EMediaDriver_SocketName0,
|
|
55 |
EMediaDriver_SocketName1,
|
|
56 |
EMediaDriver_SocketName2,
|
|
57 |
EMediaDriver_SocketName3,
|
|
58 |
ELocaleMessages_LastMsg
|
|
59 |
};
|
|
60 |
|
|
61 |
class TLocaleMessageText : public TBuf<KMaxLocaleMessageText>
|
|
62 |
{
|
|
63 |
public:
|
|
64 |
IMPORT_C TLocaleMessageText();
|
|
65 |
IMPORT_C TLocaleMessageText(TLocaleMessage aMessageNo);
|
|
66 |
IMPORT_C void Set(TLocaleMessage aMessageNo);
|
|
67 |
};
|
|
68 |
|
|
69 |
#endif
|
|
70 |
|