epoc32/include/mw/sdpcodecerr.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          : SdpCodecErr.h
    16 * Part of       : SDP Codec
    17 * Interface     : SDK API, SDP Codec API
    18 * Version       : 1.0
    19 *
    20 */
    21 
    22 
    23 
    24 #ifndef SDPCODECERR_H
    25 #define SDPCODECERR_H
    26 
    27 /**
    28 * @file
    29 * @publishedAll
    30 * @released
    31 */
    32 
    33 /**
    34  * Base value for the SdpCode error code range
    35  */
    36 const TInt KSdpCodecErrorBase = -17875;
    37 /**
    38  * Codec encoding errors for SDP fields
    39  */
    40 const TInt KErrSdpCodecVersionField			= KSdpCodecErrorBase;
    41 const TInt KErrSdpCodecOriginField			= KSdpCodecErrorBase - 1; 
    42 const TInt KErrSdpCodecSessionField			= KSdpCodecErrorBase - 2; 
    43 const TInt KErrSdpCodecInfoField			= KSdpCodecErrorBase - 3; 
    44 const TInt KErrSdpCodecUriField				= KSdpCodecErrorBase - 4; 
    45 const TInt KErrSdpCodecEmailField			= KSdpCodecErrorBase - 5; 
    46 const TInt KErrSdpCodecPhoneField			= KSdpCodecErrorBase - 6; 
    47 const TInt KErrSdpCodecConnectionField		= KSdpCodecErrorBase - 7; 
    48 const TInt KErrSdpCodecBandwidthField		= KSdpCodecErrorBase - 8; 
    49 const TInt KErrSdpCodecTimeField			= KSdpCodecErrorBase - 9; 
    50 const TInt KErrSdpCodecRepeatField			= KSdpCodecErrorBase - 10; 
    51 const TInt KErrSdpCodecZoneField			= KSdpCodecErrorBase - 11; 
    52 const TInt KErrSdpCodecKeyField				= KSdpCodecErrorBase - 12; 
    53 const TInt KErrSdpCodecAttributeField		= KSdpCodecErrorBase - 13; 
    54 const TInt KErrSdpCodecMediaField			= KSdpCodecErrorBase - 14; 
    55 const TInt KErrSdpCodecMediaInfoField		= KSdpCodecErrorBase - 15; 
    56 const TInt KErrSdpCodecMediaConnectionField	= KSdpCodecErrorBase - 16; 
    57 const TInt KErrSdpCodecMediaBandwidthField	= KSdpCodecErrorBase - 17; 
    58 const TInt KErrSdpCodecMediaKeyField	    = KSdpCodecErrorBase - 18; 
    59 const TInt KErrSdpCodecMediaAttributeField	= KSdpCodecErrorBase - 19; 
    60 const TInt KErrSdpCodecTypedTime            = KSdpCodecErrorBase - 20;
    61 
    62 const TInt KErrSdpCodecStringPool           = KSdpCodecErrorBase - 21;
    63 const TInt KErrSdpCodecDecode				= KSdpCodecErrorBase - 22;
    64 
    65 #endif //SDPCODECERR_H