equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007 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 "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: Definitions for AknCompaSrv process |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __AKNCOMPASRV_H__ |
|
20 #define __AKNCOMPASRV_H__ |
|
21 |
|
22 #include <e32base.h> |
|
23 |
|
24 _LIT(KAknCompaSrvName,"AknCompaSrv"); |
|
25 |
|
26 const TUint KAknCompaSrvMajorVersionNumber=0; |
|
27 const TUint KAknCompaSrvMinorVersionNumber=1; |
|
28 const TUint KAknCompaSrvBuildVersionNumber=1; |
|
29 |
|
30 const TUid KAknCompaSrvUid3={0x2000F864}; |
|
31 |
|
32 const TInt KAknCompaSrvMessageSlots = 2; |
|
33 const TInt KServerRetryCount = 2; |
|
34 |
|
35 // Function codes (opcodes) used in message passing between client and server |
|
36 enum TAknCompaSrvRqst |
|
37 { |
|
38 ECompaSrvSimulateKeyEvent = 1, |
|
39 ECompaSrvDisaTransEffects = 2, |
|
40 ECompaSrvRestoreTransEffects = 3 |
|
41 }; |
|
42 |
|
43 #endif // __AKNCOMPASRV_H__ |