epoc32/include/mw/sdpcodecconstants.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     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 "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:
    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