equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: Private Publish & Subscribe definitions of Startup app. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef STARTUPAPPPRIVATEPSKEYS_H |
|
20 #define STARTUPAPPPRIVATEPSKEYS_H |
|
21 |
|
22 |
|
23 const TUid KPSUidStartupApp = { 0x100058F4 }; |
|
24 |
|
25 |
|
26 // ============================================================================= |
|
27 // Startup Application Synchronization API |
|
28 // ============================================================================= |
|
29 |
|
30 const TUint32 KPSStartupAppState = 0x00000001; |
|
31 enum TPSStartupAppState |
|
32 { |
|
33 EStartupAppStateWait = 1, // Startup app is waiting for indication to start |
|
34 // playing animation(s). |
|
35 EStartupAppStateStartAnimations, // Startup app may start playing the animation(s) |
|
36 // and showing country & time queries. |
|
37 EStartupAppStateFinished // Startup app has finished playing the animation(s) |
|
38 // and finished showing country & time queries. |
|
39 }; |
|
40 |
|
41 #endif // STARTUPAPPPRIVATEPSKEYS_H |