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: |
|
15 * |
|
16 */ |
|
17 #ifndef RUNNINGAPPGLOBALS_H |
|
18 #define RUNNINGAPPGLOBALS_H |
|
19 |
|
20 #include <e32base.h> |
|
21 |
|
22 _LIT(KRunningAppServerName, "hsrunningappmonitor"); |
|
23 const TUid KRunningAppServerUid = {0x200267B0}; |
|
24 const TInt KRequestDataSizeOffset(0); |
|
25 const TInt KRequestDataBufferOffset(0); |
|
26 |
|
27 enum RunningAppCmd { |
|
28 GetRunningAppInfo =0, |
|
29 SubscribeRunningAppChanges, |
|
30 UpdateScreenshot, |
|
31 FlushData, |
|
32 CancelSubscribeRunningAppChanges, |
|
33 RegisterScreenshotMessage, |
|
34 UnregisterScreenshotMessage, |
|
35 VisibilityChange |
|
36 }; |
|
37 |
|
38 enum UpdatePriority { |
|
39 Low = 0, |
|
40 Normal, |
|
41 High |
|
42 }; |
|
43 |
|
44 enum Visibility { |
|
45 Invisible =0, |
|
46 Visible |
|
47 }; |
|
48 |
|
49 enum ScreenshotMessageOffsets { |
|
50 ScreenshotHandle = 0, |
|
51 WindowsGroup, |
|
52 AdditionalParameters, |
|
53 Priority |
|
54 }; |
|
55 |
|
56 #endif //RUNNINGAPPGLOBALS_H |
|
57 |