equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of the License "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Example Code |
|
16 * No changes necessary to support User Prompt Service |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 /** |
|
22 @file |
|
23 @internalComponent |
|
24 @test |
|
25 */ |
|
26 |
|
27 #ifndef TMSGCOMMON_H_ |
|
28 #define TMSGCOMMON_H_ |
|
29 |
|
30 #include <e32cmn.h> |
|
31 #include <e32std.h> |
|
32 |
|
33 // The User Prompt Services requires systems servers to |
|
34 // have the ProtServ capability |
|
35 _LIT(KMsgServerName, "!TMsgServer"); |
|
36 _LIT(KMsgServerImg,"TMsgServer.exe"); |
|
37 static const TUid KMsgServerUid3 = {0x01041000}; |
|
38 static const TInt KMsgServerVersionMajor = 1; |
|
39 static const TInt KMsgServerVersionMinor = 0; |
|
40 static const TInt KMsgServerVersionBuild = 0; |
|
41 |
|
42 enum TMsgServerMessages |
|
43 { |
|
44 ESendMsg, |
|
45 ECancelSendMsg, |
|
46 ESeperatorEndAll |
|
47 }; |
|
48 |
|
49 |
|
50 |
|
51 #endif /* TMSGCOMMON_H_*/ |