profilesservices/ProfileEngine/EngInc/ProfileEng.rh
changeset 0 8c5d936e5675
equal deleted inserted replaced
-1:000000000000 0:8c5d936e5675
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Profiles Engine resource structures.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 //  STRUCTURE DEFINITIONS
       
    20 
       
    21 // -----------------------------------------------------------------------------
       
    22 // DEFAULT_PROFILES
       
    23 // Default profiles
       
    24 // -----------------------------------------------------------------------------
       
    25 //
       
    26 STRUCT DEFAULT_PROFILES
       
    27     {
       
    28     STRUCT items[];
       
    29     }
       
    30 
       
    31 // -----------------------------------------------------------------------------
       
    32 // PROFILE
       
    33 // profile default name and ID
       
    34 // -----------------------------------------------------------------------------
       
    35 //
       
    36 STRUCT PROFILE
       
    37     {
       
    38     LONG id = 0;
       
    39     LTEXT name = "";
       
    40     LTEXT shortname = "";
       
    41     LTEXT naviname = "";
       
    42     LTEXT titlename = "";
       
    43     }
       
    44 
       
    45 // -----------------------------------------------------------------------------
       
    46 // PROFILE_SETTINGS
       
    47 // Profile settings
       
    48 // -----------------------------------------------------------------------------
       
    49 //
       
    50 STRUCT PROFILE_SETTINGS
       
    51     {
       
    52     STRUCT items[];
       
    53     }
       
    54 
       
    55 // -----------------------------------------------------------------------------
       
    56 // PROFILE SETTING
       
    57 // profile setting for dynamic profiles
       
    58 // -----------------------------------------------------------------------------
       
    59 //
       
    60 STRUCT PROFILE_SETTING
       
    61     {
       
    62     LONG id = 0;
       
    63     LONG key_type = 0;
       
    64     }
       
    65 
       
    66 // End of File