inc/mussesseioninformationapi.h
branchGCC_SURGE
changeset 27 7a2f5f2dfe61
parent 22 496ad160a278
equal deleted inserted replaced
20:e8be2c2e049d 27:7a2f5f2dfe61
       
     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 MUSSESSIONINFORMATIONAPI_H
       
    20 #define MUSSESSIONINFORMATIONAPI_H
       
    21 
       
    22 #include <e32cmn.h>
       
    23 #include "musuid.hrh"
       
    24 
       
    25 /**
       
    26  *  A namespace container for MultimediaSharing Resource API constants.
       
    27  *
       
    28  *  @since S60 v3.2
       
    29  */
       
    30 namespace NMusSessionInformationApi
       
    31     {
       
    32     /**  The category of these P&S properties. */
       
    33 #ifndef UNIT_TESTING  
       
    34      const TUid KCategoryUid = { 0x101F85EE }; // UID3 of AlwaysOnlineServer  
       
    35 #else
       
    36   const TUid KCategoryUid = { 0x01700a21 }; // UID3 of EunitTest of AO
       
    37 #endif
       
    38 
       
    39     /**  Contains the call event state */
       
    40     const TInt KMusCallEvent( 0x1028239F );
       
    41 
       
    42     /**  Contains the telephone number of call */
       
    43     const TInt KMusTelNumber( 0x102823A0 );    
       
    44 
       
    45     /**  Contains the Number of Active Calls */
       
    46     const TInt KMusCallCount( 0x102823A1 );    
       
    47 
       
    48     /** Contains the possible values of call event */
       
    49     enum TMusCallEvent
       
    50         {
       
    51         ENoCall,
       
    52         ECallConnected,
       
    53         ECallHold,       
       
    54         EConferenceCall
       
    55         };
       
    56 
       
    57     /**  Contains the call direction */
       
    58     const TInt KMusCallDirection( 0x102823A2 );
       
    59 
       
    60     /** Contains the call direction */
       
    61     enum TMusCallDirection
       
    62         {
       
    63         ENoDirection,
       
    64         ECallOrginated,
       
    65         ECallTerminated
       
    66         };
       
    67 
       
    68     /**  Contains the state of options response. */
       
    69     const TInt KMUSForbidden( 0x102823A3 );
       
    70     /**  Contains the possible values of options response. */
       
    71     enum TMUSForbidden
       
    72         {
       
    73         EMUSAllowed = 1,
       
    74         EMUSForbidden
       
    75         };
       
    76     /**  Contains the call provider information. ( For example Skype )      
       
    77       *  This string will be used to parse the corresponding ecom plugin
       
    78       *  which implements the livecomms engine api
       
    79       */
       
    80     const TInt KMUSCallProvider( 0x102823A4 );
       
    81     }
       
    82 
       
    83 #endif // MUSRESOURCEPROPERTIES_H