inc/mussessionproperties.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:31:01 +0100
branchRCL_3
changeset 33 bc78a40cd63c
parent 32 73a1feb507fb
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201032 Kit: 201035

/*
* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  ?Description
*
*/


#ifndef MUSPSKEYS_H
#define MUSPSKEYS_H

#include "musuid.hrh"
#include "musdomainpskeys.h"

namespace NMusSessionApi
    {
    // category uid
    const TUid KCategoryUid = { KMusManagerServerUid };
        
    // session p&s keys
    const TInt KUseCase( 0x11 ); // of type MultimediaSharing::TMusUseCase
    const TInt KStatus( KMusAvailabilityStatus ); // of type MultimediaSharing::TMusAvailabilityStatus
    const TInt KTelNumber( 0x13 );
    const TInt KRemoteSipAddress( 0x14 );
    const TInt KRemoteSipAddressProposal( 0x15);
    const TInt KContactId( 0x16 );
    
    // read this property bitwise
    const TInt KAudioCodecs( 0x17 );
    enum TAudioCodecs
        {
        EAmrNb = 0x1,
        EAmrWb = 0x2
        };
    
    // read this property bitwise
    const TInt KVideoCodecs( 0x18 );
    enum TVideoCodecs
        {
        EH263Video = 0x1,
        EH264Video = 0x2
        };
    
    const TInt KSignalingMode( 0x19 );
    enum TSignalingMode 
        {
        EIetfMode,
        EImsMode
        };
    
    const TInt KSipProfileId( 0x1A );
    const TInt KContactName( 0x1B );
    const TInt KPrivacyStatus( 0x1C );
    const TInt KMusIndicatorStatus( KMusIndicator );
    }

#endif // MUSPSKEYS_H