vtuis/lcvtplugin/inc/base/lcvtplugincommand.h
branchRCL_3
changeset 25 779871d1e4f4
parent 24 f15ac8e65a02
child 26 590f6f022902
equal deleted inserted replaced
24:f15ac8e65a02 25:779871d1e4f4
     1 /*
       
     2 * Copyright (c) 2008 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:  Plguin command
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef LCVTPLUGINCOMMAND_H_
       
    19 #define LCVTPLUGINCOMMAND_H_
       
    20 
       
    21 enum
       
    22     {
       
    23     // End active call
       
    24     EPluginCmdEndActiveCall = 5000,
       
    25     // Switch to voice call
       
    26     EPluginCmdCreateVoice,
       
    27     // Create a emergency call
       
    28     EPluginCmdDialEmergency,    
       
    29     // Enable video
       
    30     EPluginCmdEnableVideo,
       
    31     // Enable audio
       
    32     EPluginCmdEnableAudio,
       
    33     // Disable video
       
    34     EPluginCmdDisableVideo,
       
    35     // Disable audio
       
    36     EPluginCmdDisableAudio,
       
    37     // Use primary camera
       
    38     EPluginCmdUsePrimaryCamera,
       
    39     // Use secondary camera
       
    40     EPluginCmdUseSecondaryCamera,
       
    41     // Active Loudspeaker
       
    42     EPluginCmdActivateLoudspeaker,
       
    43     // Deactive Loudspeaker
       
    44     EPluginCmdDeactivateLoudspeaker
       
    45     };
       
    46 
       
    47 
       
    48 #endif /* LCVTPLUGINCOMMAND_H_ */