|
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 "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 * Name : starterdomaincrkeys.h |
|
16 * Part of : System Startup / Starter |
|
17 * Interface : Domain, Startup Status API. |
|
18 * Domain Central Repository definitions of System Startup subsystem. |
|
19 * Version : %version: 1 % |
|
20 * This material, including documentation and any related computer |
|
21 * programs, is protected by copyright controlled by Nokia. All |
|
22 * rights are reserved. Copying, including reproducing, storing, |
|
23 * adapting or translating, any or all of this material requires the |
|
24 * prior written consent of Nokia. This material also contains |
|
25 * confidential information which may not be disclosed to others |
|
26 * without the prior written consent of Nokia. |
|
27 * Template version: 4.0 |
|
28 * Nokia Core OS * |
|
29 * |
|
30 */ |
|
31 |
|
32 |
|
33 |
|
34 #ifndef STARTERDOMAINCRKEYS_H |
|
35 #define STARTERDOMAINCRKEYS_H |
|
36 |
|
37 #include <centralrepository.h> |
|
38 #include <ssm/startupreason.h> |
|
39 |
|
40 /* |
|
41 * @publishedPartner |
|
42 * @released |
|
43 */ |
|
44 // ============================================================================= |
|
45 // Startup Status API |
|
46 // ============================================================================= |
|
47 const TUid KCRUidStartup = { 0x101F8762 }; |
|
48 |
|
49 /** |
|
50 * Used by Starter to store the additional startup reason (language switch, RFS, |
|
51 * etc.) over boot. |
|
52 * |
|
53 * Contains one of the values of TStartupReason enumeration defined in |
|
54 * startupreason.h. |
|
55 */ |
|
56 const TUint32 KStartupReason = 0x00000002; |
|
57 |
|
58 /** |
|
59 * Used by Starter to check whether this is the first boot. The value is set by |
|
60 * Startup Application. |
|
61 */ |
|
62 const TUint32 KStartupFirstBoot = 0x00000003; |
|
63 enum TStartupFirstBoot |
|
64 { |
|
65 EStartupIsFirstBoot = 0, |
|
66 EStartupNotFirstBoot |
|
67 }; |
|
68 |
|
69 #endif // STARTERDOMAINCRKEYS_H |
|
70 |
|
71 // End of File |
|
72 |