tzservices/tzloc/inc/TimeZoneLocalization.rh
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __TzLocalization_RH__
       
    17 #define __TzLocalization_RH__
       
    18 
       
    19 STRUCT TIMEZONE_CITY
       
    20 	{
       
    21 	BYTE city_group_id = 0;
       
    22 	LTEXT city_name;
       
    23 	}
       
    24 
       
    25 STRUCT LOCALIZED_TIMEZONE
       
    26 	{
       
    27 	WORD time_zone_id;
       
    28 	LTEXT standard_name = "";
       
    29 	LTEXT daylight_name = "";
       
    30 	LTEXT short_standard_name = "";
       
    31 	LTEXT short_daylight_name = "";
       
    32 	STRUCT cities[];
       
    33 	}
       
    34 
       
    35 STRUCT TIMEZONE_CITY_GROUP
       
    36 	{
       
    37 	BYTE city_group_id;
       
    38 	LTEXT city_group_name;
       
    39 	}
       
    40 	
       
    41 STRUCT DEFAULT_CACHED_TIMEZONES
       
    42 	{
       
    43 	WORD default_home_zone_id;
       
    44 	WORD default_zone_of_interest_id;
       
    45 	WORD default_recent_zone1;
       
    46 	WORD default_recent_zone2;
       
    47 	}
       
    48 
       
    49 #endif // __TzLocalization_RH__