inc/mussessionproperties.h
changeset 0 f0cf47e981f9
child 32 73a1feb507fb
equal deleted inserted replaced
-1:000000000000 0:f0cf47e981f9
       
     1 /*
       
     2 * Copyright (c) 2006 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:  ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MUSPSKEYS_H
       
    20 #define MUSPSKEYS_H
       
    21 
       
    22 #include "musuid.hrh"
       
    23 #include "musdomainpskeys.h"
       
    24 
       
    25 namespace NMusSessionApi
       
    26     {
       
    27     // category uid
       
    28     const TUid KCategoryUid = { KMusManagerServerUid };
       
    29         
       
    30     // session p&s keys
       
    31     const TInt KUseCase( 0x11 ); // of type MultimediaSharing::TMusUseCase
       
    32     const TInt KStatus( KMusAvailabilityStatus ); // of type MultimediaSharing::TMusAvailabilityStatus
       
    33     const TInt KTelNumber( 0x13 );
       
    34     const TInt KRemoteSipAddress( 0x14 );
       
    35     const TInt KRemoteSipAddressProposal( 0x15);
       
    36     const TInt KContactId( 0x16 );
       
    37     
       
    38     // read this property bitwise
       
    39     const TInt KAudioCodecs( 0x17 );
       
    40     enum TAudioCodecs
       
    41         {
       
    42         EAmrNb = 0x1,
       
    43         EAmrWb = 0x2
       
    44         };
       
    45     
       
    46     // read this property bitwise
       
    47     const TInt KVideoCodecs( 0x18 );
       
    48     enum TVideoCodecs
       
    49         {
       
    50         EH263Video = 0x1,
       
    51         EH264Video = 0x2
       
    52         };
       
    53     
       
    54     const TInt KSignalingMode( 0x19 );
       
    55     enum TSignalingMode 
       
    56         {
       
    57         EIetfMode,
       
    58         EImsMode
       
    59         };
       
    60     
       
    61     const TInt KSipProfileId( 0x1A );
       
    62     const TInt KContactName( 0x1B );
       
    63     const TInt KPrivacyStatus( 0x1C );
       
    64     const TInt KMusIndicatorStatus( KMusIndicator );
       
    65     }
       
    66 
       
    67 #endif // MUSPSKEYS_H