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: This file contains domain central repository key definitions |
|
15 * for Power Save Mode |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef PSMSRVDOMAINCRKEYS_H |
|
21 #define PSMSRVDOMAINCRKEYS_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32cmn.h> |
|
25 |
|
26 // CONSTANTS |
|
27 const TUid KCRUidPowerSaveMode = {0x2000B189}; |
|
28 |
|
29 // PSM Notification API |
|
30 |
|
31 /** |
|
32 * Current power save mode |
|
33 * |
|
34 * This value is used by PSM Server to store currently active power save mode. |
|
35 * it is also used by applications that needs to know when power save mode changes |
|
36 * or wants to know which is current power save mode. |
|
37 * |
|
38 * Possible integer values are defined in psmtypes.h in enumeration TPsmsrvMode: |
|
39 * |
|
40 * Default value: 0 |
|
41 */ |
|
42 const TUint32 KPsmCurrentMode = 0x00000001; |
|
43 |
|
44 #endif // PSMSRVDOMAINCRKEYS_H |
|
45 |
|
46 // End of File |