correct the type of getProcAddress for windows

This commit is contained in:
Bill Currie 2002-06-26 14:57:40 +00:00
parent 50af936a29
commit c6d83ab9ff

View file

@ -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_