aboutsummaryrefslogtreecommitdiffstats
path: root/make/stub_includes/win32
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2006-11-20 16:34:50 +0000
committerKenneth Russel <[email protected]>2006-11-20 16:34:50 +0000
commit12c9d35be04e3bcfefb3844d20ab16dd1c70c918 (patch)
treed1e91c6e43b82e516ccdef72346f29016c96e0c6 /make/stub_includes/win32
parent9a6f259961520812f8a12115704279af255557ea (diff)
Updated glext.h to include new NVidia GeForce 8 series extensions.
Updated wglext.h and glxext.h to current versions plus GeForce 8 series extensions. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@991 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/stub_includes/win32')
-rw-r--r--make/stub_includes/win32/windows.h10
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;