kernel/eka/euser/us_std.h
changeset 300 1d28c8722707
parent 0 a41df078684a
--- 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 <e32std.h>
 #include <e32std_private.h>
 #include <e32base.h>
@@ -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