phone_plat/video_telephony_mediator_api/inc/videoteltophonecommandsapi.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     1 /*
       
     2 * Copyright (c) 2007 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:  Video Telephony specific message services sent from Video
       
    15 *                Telephony to Phone Application.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef VIDEOTELTOPHONECOMMANDSAPI_H
       
    21 #define VIDEOTELTOPHONECOMMANDSAPI_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 /**  The category UID for the messages in this header file. */
       
    27 const TUid KCatVideoTelToPhoneCommands = { 0x100058B6 };
       
    28 
       
    29 /**  Version number of this API */
       
    30 const TInt KVideoTelToPhoneCmdVersionMajor( 1 );
       
    31 const TInt KVideoTelToPhoneCmdVersionMinor( 0 );
       
    32 const TInt KVideoTelToPhoneCmdVersionBuild( 0 );
       
    33 
       
    34 /**  Video Telephony related commands to Phone Application. */
       
    35 enum TVideoTelToPhoneCommands
       
    36     {
       
    37     /**
       
    38      * Commands Phone to do fallback.
       
    39      * @capability ECapabilityNetworkControl
       
    40      */
       
    41     EVtCmdFallback = 0,
       
    42     
       
    43     /**
       
    44      * Commands Phone to switch back to voice call.
       
    45      * @capability ECapabilityNetworkControl
       
    46      */
       
    47     EVtCmdSwitchToVoice,
       
    48     
       
    49     /**
       
    50      * Commands phone that VT has not enough memory.
       
    51      * @capability ECapabilityNetworkControl
       
    52      */
       
    53     EVtCmdLowMemory
       
    54 
       
    55     };
       
    56 
       
    57 #endif // VIDEOTELTOPHONECOMMANDSAPI_H
       
    58