devmngt_plat/services_db_api/inc/services_db.rh
branchRCL_3
changeset 13 90fe62538f66
parent 12 3fec62e6e7fc
child 14 5f281e37a2f5
equal deleted inserted replaced
12:3fec62e6e7fc 13:90fe62538f66
     1 /*
       
     2 * Copyright (c) 2005-2006 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:  Resource headers for project Services DB
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef SERVICES_DB_RH
       
    20 #define SERVICES_DB_RH
       
    21 
       
    22 
       
    23 // ---------------------------------------------------------------------------
       
    24 // This structure defines a service entry: it holds the service uid,
       
    25 // service generic name, and service localized string
       
    26 // ---------------------------------------------------------------------------
       
    27 //
       
    28 STRUCT DAS_SERVICE_ENTRY
       
    29     {
       
    30     LONG service_uid;
       
    31     LTEXT service_name;
       
    32     LTEXT service_localized_name;
       
    33     }
       
    34 
       
    35 // ---------------------------------------------------------------------------
       
    36 // This structure defines a list of service entries
       
    37 // ---------------------------------------------------------------------------
       
    38 //
       
    39 STRUCT DAS_SERVICES
       
    40     {
       
    41     STRUCT services[]; //Type is DAS_SERVICE_ENTRY
       
    42     }
       
    43 
       
    44 #endif // SERVICES_DB_RH