1 #ifndef GLN64_H
2 #define GLN64_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #include "m64p_config.h"
9 #include "stdio.h"
10 
11 //#define DEBUG
12 
13 #define PLUGIN_NAME     "gles2n64"
14 #define PLUGIN_VERSION  0x000005
15 #define PLUGIN_API_VERSION 0x020200
16 
17 #define renderCallback gln64RenderCallback
18 
19 extern void (*renderCallback)();
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif
26 
27