GLES2N64 (from mupen64plus-ae) plugin. Compile and run on the OpenPandora
[mupen64plus-pandora.git] / source / gles2n64 / src / gles2N64.h
diff --git a/source/gles2n64/src/gles2N64.h b/source/gles2n64/src/gles2N64.h
new file mode 100644 (file)
index 0000000..044dcbe
--- /dev/null
@@ -0,0 +1,25 @@
+#ifndef GLN64_H
+#define GLN64_H
+
+#include "m64p_config.h"
+#include "stdio.h"
+
+
+#ifndef min
+#define min(a,b) ((a) < (b) ? (a) : (b))
+#endif
+
+//#define DEBUG
+
+#define PLUGIN_NAME     "gles2n64"
+#define PLUGIN_VERSION  0x000005
+#define PLUGIN_API_VERSION 0x020200
+
+extern ptr_ConfigGetSharedDataFilepath ConfigGetSharedDataFilepath;
+
+extern void (*CheckInterrupts)( void );
+extern void (*renderCallback)();
+
+
+#endif
+