GLES2N64 (from mupen64plus-ae) plugin. Compile and run on the OpenPandora
[mupen64plus-pandora.git] / source / gles2n64 / src / gles2N64.h
1 #ifndef GLN64_H
2 #define GLN64_H
3
4 #include "m64p_config.h"
5 #include "stdio.h"
6
7
8 #ifndef min
9 #define min(a,b) ((a) < (b) ? (a) : (b))
10 #endif
11
12 //#define DEBUG
13
14 #define PLUGIN_NAME     "gles2n64"
15 #define PLUGIN_VERSION  0x000005
16 #define PLUGIN_API_VERSION 0x020200
17
18 extern ptr_ConfigGetSharedDataFilepath ConfigGetSharedDataFilepath;
19
20 extern void (*CheckInterrupts)( void );
21 extern void (*renderCallback)();
22
23
24 #endif
25