tzservices/tzserver/Client/Include/tzidinternal.h
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 // Copyright (c) 1997-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 __TZIDINTERNAL_H__
       
    17 #define __TZIDINTERNAL_H__
       
    18 
       
    19 #include <e32def.h>
       
    20 
       
    21 /**
       
    22 The minimum valid value for a user-defined time zone numeric identifier.
       
    23 
       
    24 @internalComponent
       
    25 */
       
    26 const TUint KUserTzIdMin = 0x4000;
       
    27 
       
    28 
       
    29 /**
       
    30 The maximum valid value for a user-defined time zone numeric identifier.
       
    31 
       
    32 @internalComponent
       
    33 */
       
    34 const TUint KUserTzIdMax = 0x4FFF;
       
    35 
       
    36 
       
    37 /**
       
    38 Represents the maximum allowed value for a numeric identifier.
       
    39 Some of the special values are beyond this maximum though.
       
    40 
       
    41 @internalComponent
       
    42 */
       
    43 const TUint KTzIdMax = 0x0000FFFF;
       
    44 
       
    45 #endif