diff options
Diffstat (limited to 'make/stub_includes/win32')
-rw-r--r-- | make/stub_includes/win32/windows.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/make/stub_includes/win32/windows.h b/make/stub_includes/win32/windows.h index 5f2514444..647a5733d 100644 --- a/make/stub_includes/win32/windows.h +++ b/make/stub_includes/win32/windows.h @@ -11,6 +11,7 @@ #define VOID void typedef int BOOL; typedef unsigned char BYTE; +typedef char CHAR; typedef unsigned int DWORD; typedef int INT; typedef int INT32; @@ -33,7 +34,16 @@ typedef unsigned int UINT; typedef unsigned short USHORT; typedef unsigned short WORD; +typedef struct tagRECT + { + LONG left; + LONG top; + LONG right; + LONG bottom; + } RECT; + /* Necessary handle typedefs for parsing wglext.h */ typedef HANDLE HPBUFFERARB; typedef HANDLE HPBUFFEREXT; +typedef HANDLE HGPUNV; |