1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/systemagent/Inc/SaPrivate.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,75 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef __SAPRIVATE_H__
1.20 +#define __SAPRIVATE_H__
1.21 +
1.22 +/**
1.23 +@internalComponent
1.24 +*/
1.25 +_LIT(KSystemAgentServerName, "!SystemAgent2");
1.26 +_LIT(KSystemAgentServerImageName, "SysAgt2Svr");
1.27 +
1.28 +const TUint KSysAgentServMajorVersionNumber=1;
1.29 +const TUint KSysAgentServMinorVersionNumber=0;
1.30 +const TUint KSysAgentServBuildVersionNumber=0;
1.31 +
1.32 +/**
1.33 +This is a duplicate of KPosLastKnownLocationCategory from lbs's epos_lastknownlocationpsykeys.h
1.34 +It should NOT be used directly.
1.35 +Defines value UID of Location P&S keys category.
1.36 +The publish and subscribe key is defined by SysAgent2 server.
1.37 +@internalTechnology
1.38 + */
1.39 +const TUid KSAPosLastKnownLocationCategory = { 0x10009BFA };
1.40 +
1.41 +/**
1.42 +This is a duplicate of KPosLastKnownLocation from lbs's epos_lastknownlocationpsykeys.h
1.43 +ID of the Last Known Location key.
1.44 +It should NOT be used directly.
1.45 +Contains binary values, a buffer with packaged TPositionInfo.
1.46 +
1.47 +If it contains a buffer, which length does not match TPositionInfo,
1.48 +such value shall be ignored.
1.49 +
1.50 +Client must have ReadDeviceData capability in order to read this key.
1.51 +@internalTechnology
1.52 +*/
1.53 +const TInt KSAPosLastKnownLocation = 0x00000001;
1.54 +
1.55 +/**
1.56 +This is a duplicate of KPosIndicatorCategoryUid from lbs's locationfwdomainpskeys.h
1.57 +It should NOT be used directly.
1.58 +Defines UID of Positioning Indicator P&S keys category.
1.59 +@internalTechnology
1.60 +*/
1.61 +const TUid KSAPosIndicatorCategory = { 0x101F7A79 };
1.62 +
1.63 +/**
1.64 +This is a duplicate of KPosIntGpsHwStatus from lbs's locationfwdomainpskeys.h
1.65 +ID of the Integrated GPS HW Status key.
1.66 +It should NOT be used directly.
1.67 +May contain values defined by @ref TPosIntGpsHwIndicatorState.
1.68 +
1.69 +Default value (i.e. when this key is not found) is EPosIntGpsHwIndicatorOff.
1.70 +
1.71 +If it contains any other value than defined in @ref TPosIntGpsHwState,
1.72 +such value shall be ignored and TPosIndicatorState::EPosIntGpsHwIndicatorOff
1.73 +shall be assumed.
1.74 +@internalTechnology
1.75 +*/
1.76 +const TInt KSAPosIntGpsHwStatus = 0x00000001;
1.77 +
1.78 +#endif //__SAPRIVATE_H__