wlanutilities/wlansettingsui/inc/wlansettingsuipanic.h
branchRCL_3
changeset 24 63be7eb3fc78
parent 23 b852595f5cbe
child 25 f28ada11abbf
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
     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: 
       
    15 *      Panic function and codes.   
       
    16 *      
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef WLAN_SETTINGS_UI_PANIC_H
       
    22 #define WLAN_SETTINGS_UI_PANIC_H
       
    23 
       
    24 // TYPES
       
    25 
       
    26 /**
       
    27 * Panic reasons for WLAN Settings UI.
       
    28 */
       
    29 enum TWlanSettingsUiPanicReason
       
    30     {
       
    31     EWlanSettingsUiBadSetting,          ///< Bad setting.
       
    32     EWlanSettingsUiBadControl,          ///< Bad control.
       
    33     EWlanSettingsUiTransactionUnderflow ///< Transaction begin/commit mismatch.
       
    34     };
       
    35 
       
    36 // FUNCTION DECLARATIONS
       
    37 
       
    38 /**
       
    39 * Panic the thread.
       
    40 * @param aReason Reason for the panic.
       
    41 */
       
    42 void WlanSettingsUiPanic( TWlanSettingsUiPanicReason aReason );
       
    43 
       
    44 #endif