epoc32/include/mw/sdpcodecconstants.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 2 epoc32/include/sdpcodecconstants.h@2fe1408b6811
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     1 /*
     2 * Copyright (c) 2007-2009 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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 * Name          : SdpCodecConstants.h
    16 * Part of       : SDPCodec
    17 * Constants defination file 
    18 * Version       : 1.0 
    19 *
    20 */
    21 
    22 
    23 
    24 
    25 #ifndef __SDPCODECCONSTANTS_H__
    26 #define __SDPCODECCONSTANTS_H__
    27 
    28 /**
    29 * @file
    30 * @publishedAll
    31 * @released
    32 */
    33 
    34 
    35 // Delimiter constants
    36 const TText8 KDotChar = '.';
    37 const TText8 KColonChar = ':';
    38 const TText8 KSPChar = ' ';  
    39 const TText8 KEqualChar = '=';
    40 const TText8 KSlashChar = '/';
    41 const TText8 KHyphenChar = '-';
    42 const TText8 KLFChar = '\n';
    43 const TText8 KCRChar = '\r';
    44 const TText8 KEofChar = '\0';
    45 
    46 _LIT8(KDotStr, ".");
    47 _LIT8(KColonStr, ":");
    48 _LIT8(KSPStr, " ");
    49 _LIT8(KEqualStr, "=");
    50 _LIT8(KSlashStr, "/");
    51 _LIT8(KHyphenStr, "-");
    52 _LIT8(KCRLFStr, "\r\n");
    53 _LIT8(KLFStr, "\n");
    54 _LIT8(KCRStr, "\r");
    55 _LIT8(KEofStr, "\0");
    56 _LIT8(KValidFQDNChars, 
    57       "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-");
    58 
    59 #endif