mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
wgl funcs are likely GLAPIENTRY type too :)
This commit is contained in:
parent
2d068c0745
commit
e765321452
1 changed files with 5 additions and 5 deletions
|
@ -62,11 +62,11 @@ extern void VID_Init8bitPalette (void);
|
|||
extern void (*vid_menudrawfn) (void);
|
||||
extern void (*vid_menukeyfn) (int);
|
||||
|
||||
HGLRC (*qf_wglCreateContext) (HDC);
|
||||
BOOL (*qf_wglDeleteContext) (HGLRC);
|
||||
HGLRC (*qf_wglGetCurrentContext) (void);
|
||||
HDC (*qf_wglGetCurrentDC) (void);
|
||||
BOOL (*qf_wglMakeCurrent) (HDC, HGLRC);
|
||||
HGLRC (GLAPIENTRY *qf_wglCreateContext) (HDC);
|
||||
BOOL (GLAPIENTRY *qf_wglDeleteContext) (HGLRC);
|
||||
HGLRC (GLAPIENTRY *qf_wglGetCurrentContext) (void);
|
||||
HDC (GLAPIENTRY *qf_wglGetCurrentDC) (void);
|
||||
BOOL (GLAPIENTRY *qf_wglMakeCurrent) (HDC, HGLRC);
|
||||
|
||||
#define MAX_MODE_LIST 30
|
||||
#define VID_ROW_SIZE 3
|
||||
|
|
Loading…
Reference in a new issue