landmarksui/engine/inc/DllMain.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2002 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:    LandmarksUi Content File -    Contains engine panic function and panic enum values.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 #ifndef LMKENG_DLLMAIN_H
       
    25 #define LMKENG_DLLMAIN_H
       
    26 
       
    27 //  INCLUDES
       
    28 #include <e32std.h>
       
    29 
       
    30 // DATA TYPES
       
    31 /// Landmarks application's engine panic codes.
       
    32 enum TLmkEnginePanicCode
       
    33     {
       
    34     };
       
    35 
       
    36 
       
    37 // FUNCTION PROTOTYPES
       
    38 /**
       
    39  * Stop the program execution with module specific text and error code.
       
    40  * Call if an unrecoverable error occurs in this module's code.
       
    41  *
       
    42  * @param aCode     error code
       
    43  *
       
    44  * @see TLmkEngPanicCode
       
    45  */
       
    46 void LmkEngPanic(TInt aCode);
       
    47 
       
    48 #endif // LMKENG_DLLMAIN_H
       
    49 
       
    50 // End of File