loc_plat/location_centre_api/inc/lcnativeapps.hrh
branchRCL_3
changeset 16 4721bd00d3da
parent 14 3a25f69541ff
child 21 e15b7f06eba6
equal deleted inserted replaced
14:3a25f69541ff 16:4721bd00d3da
     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:  Unique Identifiers for Native Location Applications.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef LCNATIVEAPPS_HRH_
       
    20 #define LCNATIVEAPPS_HRH_
       
    21 
       
    22 /**
       
    23  * @file locationcentrenativeapps.hrh
       
    24  * 
       
    25  * This file provides the System Wide unique identifiers for native Location
       
    26  * based applications. These applications include
       
    27  * - GPS Data
       
    28  * - Landmarks
       
    29  * - Positioning Settings
       
    30  *
       
    31  * These applications MUST use the same value for identifiers when registering
       
    32  * with Location Centre and the Client application ( user of the Location
       
    33  * Centre API ) can use these values to customize the list of applications
       
    34  * displayed in Location Centre.
       
    35  *
       
    36  * @lib lcservice.lib
       
    37  * @since S60 v5.0
       
    38  */
       
    39 
       
    40 /**
       
    41  * System wide unique identifer for GPS Data application. GPS Data application
       
    42  * must use this identifier while registering with Location Centre.
       
    43  *
       
    44  * The Client application can use this value while filtering Location
       
    45  * Applications to be displayed in Location Centre while using the 
       
    46  * @ref CLcService::LaunchLocationCentreL functions.
       
    47  */
       
    48 _LIT( KGpsDataIdentifier, "0x101F85A0" );
       
    49 
       
    50 /**
       
    51  * System wide unique identifer for Landmarks application. Landmarks application
       
    52  * must use this identifier while registering with Location Centre.
       
    53  *
       
    54  * The Client application can use this value while filtering Location
       
    55  * Applications to be displayed in Location Centre while using the 
       
    56  * @ref CLcService::LaunchLocationCentreL functions.
       
    57  */
       
    58 _LIT( KLandmarksIdentifier, "0x101F85A2" );
       
    59 
       
    60 /**
       
    61  * System wide unique identifer for Positioning Settings application. 
       
    62  * Positioning Settings application must use this identifier while
       
    63  * registering with Location Centre.
       
    64  *
       
    65  * The Client application can use this value while filtering Location
       
    66  * Applications to be displayed in Location Centre while using the 
       
    67  * @ref CLcService::LaunchLocationCentreL functions.
       
    68  */
       
    69 _LIT( KPositioningSettingsIdentifer, "0x102831B" );
       
    70 
       
    71 #endif // LCNATIVEAPPS_HRH_