|
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: Globals for cp active data server |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_CONTENTHARVESTERGLOBALS_H |
|
20 #define C_CONTENTHARVESTERGLOBALS_H |
|
21 |
|
22 // CONSTANTS |
|
23 const TUint KContentHarvesterMajorVersionNumber = 0; |
|
24 const TUint KContentHarvesterMinorVersionNumber = 1; |
|
25 const TUint KContentHarvesterBuildVersionNumber = 1; |
|
26 |
|
27 _LIT( KContentHarvesterThreadName, "contentharvester_MainThread" ); |
|
28 _LIT( KContentHarvesterName, "contentharvester" ); |
|
29 _LIT( KContentHarvesterFilename, "contentharvester" ); |
|
30 |
|
31 const TUid KServerUid3 = |
|
32 { |
|
33 0x10282E5A |
|
34 }; |
|
35 |
|
36 // ENUMERATIONS |
|
37 // Opcodes used in message passing between client and server |
|
38 enum KContentHarvesterRqst |
|
39 { |
|
40 EContentHarvesterUpdate = 100, |
|
41 EContentHarvesterStop |
|
42 }; |
|
43 |
|
44 enum KContentHarvesterRsp |
|
45 { |
|
46 EContentHarvesterUpdateComplete = 200, |
|
47 EContentHarvesterStopComplete |
|
48 }; |
|
49 |
|
50 #endif // C_CONTENTHARVESTERGLOBALS_H |
|
51 // End of File |