equal
deleted
inserted
replaced
1 coreapplicationuissdkcrkeys.h |
1 /* |
|
2 * Copyright (c) 2005 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 "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: SDK Central Repository definitions of the |
|
15 * Core Application UIs subsystem |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef COREAPPLICATIONUISSDKCRKEYS_H |
|
21 #define COREAPPLICATIONUISSDKCRKEYS_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <centralrepository.h> |
|
25 |
|
26 const TUid KCRUidCoreApplicationUIs = { 0x101F876C }; |
|
27 |
|
28 // ============================================================================= |
|
29 // Network Status API |
|
30 // ============================================================================= |
|
31 |
|
32 /** |
|
33 * This key indicates whether network connections are allowed. E.g. is Offline Mode |
|
34 * active. |
|
35 * |
|
36 * @see TCoreAppUIsNetworkConnectionAllowed |
|
37 */ |
|
38 const TUint32 KCoreAppUIsNetworkConnectionAllowed = 0x00000001; |
|
39 enum TCoreAppUIsNetworkConnectionAllowed |
|
40 { |
|
41 ECoreAppUIsNetworkConnectionNotAllowed = 0, ///< Network connection not allowed |
|
42 ECoreAppUIsNetworkConnectionAllowed ///< Network connection allowed |
|
43 }; |
|
44 |
|
45 #endif // COREAPPLICATIONUISSDKCRKEYS_H |
|
46 |
|
47 // End of File |
|
48 |