summaryrefslogtreecommitdiffstats
path: root/make/stub_includes/windows
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2009-06-15 22:39:33 +0000
committerKenneth Russel <[email protected]>2009-06-15 22:39:33 +0000
commit90bcb596e88898f807b39c9e7c85485ab8c006b6 (patch)
treecd8364c36dc0035fde6660808a803d28e69b3fbc /make/stub_includes/windows
parent9e979e542165358b5c3684078e193f9c706f1eab (diff)
Deleted obsolete source code in preparation for copying JOGL_2_SANDBOX
on to trunk git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@146 a78bb65f-1512-4460-ba86-f6dc96a7bf27
Diffstat (limited to 'make/stub_includes/windows')
-rwxr-xr-xmake/stub_includes/windows/dynamic-linker.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/make/stub_includes/windows/dynamic-linker.h b/make/stub_includes/windows/dynamic-linker.h
deleted file mode 100755
index 1b06902..0000000
--- a/make/stub_includes/windows/dynamic-linker.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/* Windows #defines and typedefs required for processing of extracts
- from WINDOWS.H */
-
-#define FAR
-#define WINBASEAPI
-#define WINAPI
-#define CONST const
-#define VOID void
-typedef int BOOL;
-typedef unsigned char BYTE;
-typedef unsigned int DWORD;
-typedef int INT;
-typedef int INT32;
-typedef __int64 INT64;
-typedef float FLOAT;
-typedef struct _handle* HANDLE;
-typedef HANDLE HMODULE;
-typedef long LONG;
-typedef const char* LPCSTR;
-typedef const short* LPCWSTR;
-typedef void* LPVOID;
-typedef struct _proc* PROC;
-typedef unsigned int* PUINT;
-typedef unsigned int UINT;
-typedef unsigned short USHORT;
-typedef unsigned short WORD;
-
-// Dynamic loading routines
-WINBASEAPI DWORD WINAPI GetLastError(VOID);
-WINBASEAPI HMODULE WINAPI LoadLibraryW(LPCWSTR lpLibFileName);
-WINBASEAPI PROC WINAPI GetProcAddressA(HMODULE hModule, LPCSTR lpProcName);
-WINBASEAPI BOOL WINAPI FreeLibrary(HMODULE hLibModule);