mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
correct the type of getProcAddress for windows
This commit is contained in:
parent
50af936a29
commit
c6d83ab9ff
1 changed files with 4 additions and 0 deletions
|
@ -47,7 +47,11 @@ qboolean GLF_Init (void);
|
|||
void *QFGL_ProcAddress (void *, const char *, qboolean);
|
||||
|
||||
extern void *(*glGetProcAddress) (const char *);
|
||||
#ifdef _WIN32
|
||||
extern void *(*getProcAddress) (HINSTANCE, LPCSTR);
|
||||
#else
|
||||
extern void *(*getProcAddress) (void *, const char *);
|
||||
#endif
|
||||
extern void *QFGL_LoadLibrary (void);
|
||||
|
||||
#endif // __QF_GL_funcs_h_
|
||||
|
|
Loading…
Reference in a new issue