sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __SAPRIVATE_H__
|
sl@0
|
17 |
#define __SAPRIVATE_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@internalComponent
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
_LIT(KSystemAgentServerName, "!SystemAgent2");
|
sl@0
|
23 |
_LIT(KSystemAgentServerImageName, "SysAgt2Svr");
|
sl@0
|
24 |
|
sl@0
|
25 |
const TUint KSysAgentServMajorVersionNumber=1;
|
sl@0
|
26 |
const TUint KSysAgentServMinorVersionNumber=0;
|
sl@0
|
27 |
const TUint KSysAgentServBuildVersionNumber=0;
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
This is a duplicate of KPosLastKnownLocationCategory from lbs's epos_lastknownlocationpsykeys.h
|
sl@0
|
31 |
It should NOT be used directly.
|
sl@0
|
32 |
Defines value UID of Location P&S keys category.
|
sl@0
|
33 |
The publish and subscribe key is defined by SysAgent2 server.
|
sl@0
|
34 |
@internalTechnology
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
const TUid KSAPosLastKnownLocationCategory = { 0x10009BFA };
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
This is a duplicate of KPosLastKnownLocation from lbs's epos_lastknownlocationpsykeys.h
|
sl@0
|
40 |
ID of the Last Known Location key.
|
sl@0
|
41 |
It should NOT be used directly.
|
sl@0
|
42 |
Contains binary values, a buffer with packaged TPositionInfo.
|
sl@0
|
43 |
|
sl@0
|
44 |
If it contains a buffer, which length does not match TPositionInfo,
|
sl@0
|
45 |
such value shall be ignored.
|
sl@0
|
46 |
|
sl@0
|
47 |
Client must have ReadDeviceData capability in order to read this key.
|
sl@0
|
48 |
@internalTechnology
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
const TInt KSAPosLastKnownLocation = 0x00000001;
|
sl@0
|
51 |
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
This is a duplicate of KPosIndicatorCategoryUid from lbs's locationfwdomainpskeys.h
|
sl@0
|
54 |
It should NOT be used directly.
|
sl@0
|
55 |
Defines UID of Positioning Indicator P&S keys category.
|
sl@0
|
56 |
@internalTechnology
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
const TUid KSAPosIndicatorCategory = { 0x101F7A79 };
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
This is a duplicate of KPosIntGpsHwStatus from lbs's locationfwdomainpskeys.h
|
sl@0
|
62 |
ID of the Integrated GPS HW Status key.
|
sl@0
|
63 |
It should NOT be used directly.
|
sl@0
|
64 |
May contain values defined by @ref TPosIntGpsHwIndicatorState.
|
sl@0
|
65 |
|
sl@0
|
66 |
Default value (i.e. when this key is not found) is EPosIntGpsHwIndicatorOff.
|
sl@0
|
67 |
|
sl@0
|
68 |
If it contains any other value than defined in @ref TPosIntGpsHwState,
|
sl@0
|
69 |
such value shall be ignored and TPosIndicatorState::EPosIntGpsHwIndicatorOff
|
sl@0
|
70 |
shall be assumed.
|
sl@0
|
71 |
@internalTechnology
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
const TInt KSAPosIntGpsHwStatus = 0x00000001;
|
sl@0
|
74 |
|
sl@0
|
75 |
#endif //__SAPRIVATE_H__
|