epoc32/include/dial_consts.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
equal deleted inserted replaced
1:666f914201fb 2:2fe1408b6811
     1 dial_consts.h
     1 // Copyright (c) 2007-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 
       
    17 
       
    18 /**
       
    19  @file 
       
    20  @publishedAll
       
    21  @deprecated 9.1
       
    22 */
       
    23 
       
    24 #ifndef __DIAL_CONSTS_H__
       
    25 /**
       
    26 @internalComponent
       
    27 @deprecated 9.1
       
    28 */
       
    29 #define __DIAL_CONSTS_H__
       
    30 
       
    31 /** Maximum length for TDialString. 
       
    32 @internalComponent
       
    33 @released
       
    34 */
       
    35 const TInt KMaxDialString=50;
       
    36 
       
    37 /** Maximum length for TAreaCode. 
       
    38 @internalComponent
       
    39 @released
       
    40 */
       
    41 const TInt KMaxAreaCode=10;
       
    42 
       
    43 /** Maximum length for TNatCode. 
       
    44 @internalComponent
       
    45 @released
       
    46 */
       
    47 const TInt KMaxNatCode=10;
       
    48 
       
    49 /** Maximum length for TNatPrefCode.
       
    50 @internalComponent
       
    51 @released
       
    52 */
       
    53 const TInt KMaxNatPrefCode=10;
       
    54 
       
    55 /** Maximum length for TIntlPrefCode. 
       
    56 @internalComponent
       
    57 @released
       
    58 */
       
    59 const TInt KMaxIntlPrefCode=10;
       
    60 
       
    61 /** A buffer to contain a telephone number to dial. 
       
    62 @publishedAll
       
    63 @released
       
    64 */
       
    65 typedef TBuf<KMaxDialString> TDialString;
       
    66 
       
    67 /** A buffer for a telephony area code. 
       
    68 @publishedAll
       
    69 @released
       
    70 */
       
    71 typedef TBuf<KMaxAreaCode> TAreaCode;
       
    72 
       
    73 /** A buffer for a telephony national code. 
       
    74 @publishedAll
       
    75 @released
       
    76 */
       
    77 typedef TBuf<KMaxNatCode> TNatCode;
       
    78 
       
    79 /** A buffer for a telephony national prefix code. 
       
    80 @publishedAll
       
    81 @released
       
    82 */
       
    83 typedef TBuf<KMaxNatPrefCode> TNatPrefCode;
       
    84 
       
    85 /** A buffer for a telephony international prefix code. 
       
    86 @publishedAll
       
    87 @released
       
    88 */
       
    89 typedef TBuf<KMaxIntlPrefCode> TIntlPrefCode;
       
    90 
       
    91 
       
    92 
       
    93 #endif