diff -r 0659d0e1a03c -r 1d28c8722707 kernel/eka/euser/us_std.h --- a/kernel/eka/euser/us_std.h Wed Oct 20 13:58:28 2010 +0100 +++ b/kernel/eka/euser/us_std.h Tue Nov 02 15:29:23 2010 +0000 @@ -15,6 +15,9 @@ // // +#ifndef __US_STD_H__ +#define __US_STD_H__ + #include #include #include @@ -31,3 +34,18 @@ GLREF_C void Panic(TCdtPanic aPanic); + + +class TEntryPointList + { +public: + TInt CallEPs(); + TBool AlreadyCalled(TLinAddr aEP); + + TEntryPointList* iPrevList; + TInt iCurrentEP; + TInt iNumEPs; + TLinAddr iEPs[KMaxLibraryEntryPoints]; + }; + +#endif