diff options
author | Sven Gothel <[email protected]> | 2010-11-08 05:00:04 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-08 05:00:04 +0100 |
commit | 4febb33b6c6b1690305a614333a389f15c428849 (patch) | |
tree | a8bfd91f0dadd27e9fbfb83b97b5237da9a42aca /make | |
parent | 7df06e801457cb1831699ad825ec43b6f13b893f (diff) |
Move win32 RECT structure to windows.h
Diffstat (limited to 'make')
-rw-r--r-- | make/stub_includes/opengl/GL/wglext.h | 7 | ||||
-rw-r--r-- | make/stub_includes/win32/windows.h | 8 | ||||
-rw-r--r-- | make/stub_includes/win32/wingdi.h | 7 |
3 files changed, 8 insertions, 14 deletions
diff --git a/make/stub_includes/opengl/GL/wglext.h b/make/stub_includes/opengl/GL/wglext.h index 4898ce4d9..a34c63c43 100644 --- a/make/stub_includes/opengl/GL/wglext.h +++ b/make/stub_includes/opengl/GL/wglext.h @@ -387,13 +387,6 @@ DECLARE_HANDLE(HPBUFFEREXT); #ifndef SKIP_WGL_HANDLE_DEFINITIONS DECLARE_HANDLE(HGPUNV); #endif /* !SKIP_WGL_HANDLE_DEFINITIONS */ -typedef struct tagRECT { - LONG left; - LONG top; - LONG right; - LONG bottom; -} RECT; - typedef struct _GPU_DEVICE { DWORD cb; CHAR DeviceName[32]; diff --git a/make/stub_includes/win32/windows.h b/make/stub_includes/win32/windows.h index 20d424a79..a1162f531 100644 --- a/make/stub_includes/win32/windows.h +++ b/make/stub_includes/win32/windows.h @@ -39,3 +39,11 @@ typedef unsigned short WORD; typedef HANDLE HPBUFFERARB; typedef HANDLE HPBUFFEREXT; typedef HANDLE HGPUNV; + +typedef struct tagRECT { + LONG left; + LONG top; + LONG right; + LONG bottom; +} RECT; + diff --git a/make/stub_includes/win32/wingdi.h b/make/stub_includes/win32/wingdi.h index e97826e05..e4942b21b 100644 --- a/make/stub_includes/win32/wingdi.h +++ b/make/stub_includes/win32/wingdi.h @@ -11,13 +11,6 @@ #ifndef WGL_GDI_VERSION_1_X -typedef struct tagRECT { - LONG left; - LONG top; - LONG right; - LONG bottom; -} RECT; - typedef struct tagRGBQUAD { BYTE rgbBlue; BYTE rgbGreen; |