equal
deleted
inserted
replaced
1 lbsipc.h |
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // 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 |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __LBSIPC_H__ |
|
17 #define __LBSIPC_H__ |
|
18 |
|
19 #include <lbs/lbsipc.hrh> |
|
20 |
|
21 /** |
|
22 Major version number |
|
23 |
|
24 @publishedAll |
|
25 @released |
|
26 */ |
|
27 const TInt8 KPosMajorVersionNumber = 1; |
|
28 |
|
29 /** |
|
30 Minor version number |
|
31 |
|
32 @publishedAll |
|
33 @released |
|
34 */ |
|
35 const TInt8 KPosMinorVersionNumber = 0; |
|
36 |
|
37 /** |
|
38 Build number |
|
39 |
|
40 @publishedAll |
|
41 @released |
|
42 */ |
|
43 const TInt16 KPosBuildVersionNumber = 0; |
|
44 |
|
45 /** |
|
46 Default message slots |
|
47 |
|
48 @publishedAll |
|
49 @released |
|
50 */ |
|
51 const TInt KLbsDefaultMessageSlots = 16; |
|
52 |
|
53 /** |
|
54 @publishedAll |
|
55 @released |
|
56 The name of the server held in the kernel |
|
57 */ |
|
58 _LIT(KPositionServerName, "!PosServer"); // the server name must start with a "!" because the server now has "ProtServ" capability |
|
59 |
|
60 /** |
|
61 @publishedAll |
|
62 @released |
|
63 The name of the server held in the kernel |
|
64 */ |
|
65 _LIT(KPositionServerImg, "EPosServer"); |
|
66 |
|
67 #endif // __LBSIPC_H__ |