vtengines/videoteleng/CallCtrl/Inc/VtCtlPanic.h
changeset 0 ed9695c8bcbe
equal deleted inserted replaced
-1:000000000000 0:ed9695c8bcbe
       
     1 /*
       
     2 * Copyright (c) 2004 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:  Data types for call control
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef VTCTLPANIC_H
       
    21 #define VTCTLPANIC_H
       
    22 
       
    23 //  INCLUDES
       
    24 
       
    25 #include <e32std.h>
       
    26 
       
    27 // CONSTANTS
       
    28 
       
    29 /**
       
    30 * Panic text
       
    31 */
       
    32 _LIT( KVtCtlPanicCategory, "VtCSCall" );
       
    33 
       
    34 // DATA TYPES
       
    35 
       
    36 /**
       
    37 * Panic values
       
    38 */
       
    39 enum TVtCtlPanic {
       
    40     //** Line subsession handle is null */
       
    41     EVtCtlPanicLineHandleNull,
       
    42     /** Call subsession handle is null */
       
    43     EVtCtlPanicCallHandleNull
       
    44     };
       
    45 
       
    46 // FUNCTION PROTOTYPES
       
    47 
       
    48 /**
       
    49 * Call control panic.
       
    50 * @param aPanic panic value
       
    51 */
       
    52 void Panic( TVtCtlPanic aPanic );
       
    53 
       
    54 #endif // VTCTLPANIC_H
       
    55 
       
    56 // End of File