mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-29 05:41:02 +00:00
12 lines
230 B
C
12 lines
230 B
C
|
#ifndef GAPI_H
|
||
|
#define GAPI_H
|
||
|
|
||
|
int GXOPENDISPLAY(HWND hWnd, DWORD dwFlags);
|
||
|
int GXCLOSEDISPLAY();
|
||
|
void * GXBEGINDRAW();
|
||
|
int GXENDDRAW();
|
||
|
struct GXDisplayProperties GXGETDISPLAYPROPERTIES();
|
||
|
int GXSUSPEND();
|
||
|
int GXRESUME();
|
||
|
|
||
|
#endif
|