1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef _WIN32
- # error You should not be including this file on this platform
- #endif
- #ifndef __GLW_WIN_H__
- #define __GLW_WIN_H__
- typedef struct
- {
- HINSTANCE hInstance;
- void *wndproc;
- HDC hDC;
- HWND hWnd;
- HGLRC hGLRC;
- HINSTANCE hinstOpenGL;
- qboolean minidriver;
- qboolean allowdisplaydepthchange;
- qboolean mcd_accelerated;
- FILE *log_fp;
- } glwstate_t;
- extern glwstate_t glw_state;
- #endif
|