appinstaller/AppinstUi/sisxsifplugin/inc/sisxsifplugin.pan
branchRCL_3
changeset 66 8b7f4e561641
parent 65 7333d7932ef7
child 70 e8965914fac7
equal deleted inserted replaced
65:7333d7932ef7 66:8b7f4e561641
     1 /*
       
     2 * Copyright (c) 2010 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:  SISX SIF plugin panic codes
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef SISXSIFPLUGIN_PAN
       
    20 #define SISXSIFPLUGIN_PAN
       
    21 
       
    22 #include <e32std.h>     // User
       
    23 
       
    24 /**
       
    25  * Native SISX SIF (Software Install Framework) plugin panic codes
       
    26  */
       
    27 enum TSisxSifPanicCode
       
    28     {
       
    29     ESisxSifInternalError = 1,
       
    30     ESisxSifNotInitialized,
       
    31     ESisxSifNullPointer,
       
    32     ESisxSifUnknownErrorCode
       
    33     };
       
    34 
       
    35 inline void Panic( TSisxSifPanicCode aReason )
       
    36     {
       
    37     _LIT( category, "SisxSif" );
       
    38     User::Panic( category, aReason );
       
    39     }
       
    40 
       
    41 #endif // SISXSIFPLUGIN_PAN