usbuis/usbui/USBClassChangeUIPlugin/inc/USBClassChangeUIPlugin.h
branchRCL_3
changeset 80 e02eb84a14d2
parent 0 1e05558e2206
equal deleted inserted replaced
79:25fce757be94 80:e02eb84a14d2
       
     1 /*
       
     2 * Copyright (c) 2005, 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:  Common declarations for USBClassChange classes
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef USBCLASSCHANGEUIPLUGIN_H
       
    20 #define USBCLASSCHANGEUIPLUGIN_H
       
    21 
       
    22 #include <e32svr.h> 	// For RDebug and Panic
       
    23 
       
    24 // Application name
       
    25 //
       
    26 _LIT( KUSBUIAppName, "USBClassChangeUIPlugin" );
       
    27 
       
    28 // UID of the application
       
    29 //
       
    30 const TUid KUidUSBClassChangeUI = { 0x102068E2 };
       
    31 
       
    32 // Panic values
       
    33 //
       
    34 enum TUSBUIPanics 
       
    35     {
       
    36     EUSBUIMainListNotEmpty = 10000,    
       
    37     EUSBUIPanicIllegalValue,
       
    38     };
       
    39 
       
    40 // MACROS
       
    41 //
       
    42 #define PANIC( aPanic ) User::Panic( KUSBUIAppName, aPanic )
       
    43 
       
    44 // UID of the main view
       
    45 //
       
    46 const TUid KUSBUIMainViewId = { 1 };
       
    47 
       
    48 // UID of the General Settings Plugin
       
    49 const TUid KGsUSBUiPluginUid = { 0x1020E473 };
       
    50 
       
    51 #endif //USBCLASSCHANGEUIPLUGIN
       
    52 
       
    53 // End of file