kernel/eka/euser/us_std.h
changeset 300 1d28c8722707
parent 0 a41df078684a
equal deleted inserted replaced
293:0659d0e1a03c 300:1d28c8722707
    13 // Description:
    13 // Description:
    14 // e32\euser\us_std.h
    14 // e32\euser\us_std.h
    15 // 
    15 // 
    16 //
    16 //
    17 
    17 
       
    18 #ifndef __US_STD_H__
       
    19 #define __US_STD_H__
       
    20 
    18 #include <e32std.h>
    21 #include <e32std.h>
    19 #include <e32std_private.h>
    22 #include <e32std_private.h>
    20 #include <e32base.h>
    23 #include <e32base.h>
    21 #include <e32base_private.h>
    24 #include <e32base_private.h>
    22 #include <e32def_private.h>
    25 #include <e32def_private.h>
    29 #include <e32shbufcmn.h>
    32 #include <e32shbufcmn.h>
    30 #include <u32exec.h>
    33 #include <u32exec.h>
    31 
    34 
    32 
    35 
    33 GLREF_C void Panic(TCdtPanic aPanic);
    36 GLREF_C void Panic(TCdtPanic aPanic);
       
    37 
       
    38 
       
    39 class TEntryPointList
       
    40 	{
       
    41 public:
       
    42 	TInt CallEPs();
       
    43 	TBool AlreadyCalled(TLinAddr aEP);
       
    44 
       
    45 	TEntryPointList* iPrevList;
       
    46 	TInt iCurrentEP;
       
    47 	TInt iNumEPs;
       
    48 	TLinAddr iEPs[KMaxLibraryEntryPoints];
       
    49 	};
       
    50 
       
    51 #endif