equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 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 "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: This header contains the constants for cenrep keys. |
|
15 * |
|
16 */ |
|
17 #ifndef __DMEVENTNOTIFIERCRKEYS_H__ |
|
18 #define __DMEVENTNOTIFIERCRKEYS_H__ |
|
19 |
|
20 //UID3 of this executable |
|
21 #define KAppUidDmEventNotifier 0x20026F5E |
|
22 |
|
23 //Cenrep key to store the scheduled status (enabled/disabled) |
|
24 const TUint32 KDmEventNotifierEnabled = 0x00000001; |
|
25 |
|
26 //Cenrep key to know whether SCP server should be notified upon events |
|
27 const TUint32 KSCPNotifyEvent = 0x00000002; |
|
28 |
|
29 //Cenrep key to know whether AM server should be notified upon events |
|
30 const TUint32 KAMNotifyEvent = 0x00000003; |
|
31 |
|
32 |
|
33 //Cenrep key to have the memory status |
|
34 const TUint32 KMMCStatus = 0x00000004; |
|
35 |
|
36 #endif //__DMEVENTNOTIFIERCRKEYS_H__ |
|
37 // End of File |