blob: 07bd74f78ea4a90cd2f1f3cbc403dd80b51e1990 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __GL_TOOLS_H__
#define __GL_TOOLS_H__
typedef struct box64context_s box64context_t;
typedef void* (*glprocaddress_t)(const char* name);
void freeGLProcWrapper(box64context_t* context);
void* getGLProcAddress(x64emu_t* emu, glprocaddress_t procaddr, const char* rname);
#endif //__GL_TOOLS_H__
|