blob: 1cfc68892119f3013fe639e7188e570cfbb537c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef __WINSTUFF__
#define __WINSTUFF__
#include <windows.h>
/**
* Out of the Document:
* http://java.sun.com/products/jdk/faq/jni-j2sdk-faq.html
* So if you have trouble with the type __int64,
* please use this #define !!!
*/
#ifdef FOOBAR_COMPILER
#define __int64 signed_64_bit_type
#endif
/*
#include "gl.win32.not.h"
#include "gl.win32.ext.h"
*/
#define __LIB_VERSION__ __SED_LIB_VERSION__
#ifdef LIBAPIENTRY
#undef LIBAPIENTRY
#endif
#ifdef LIBAPI
#undef LIBAPI
#endif
#define LIBAPI __declspec(dllexport)
#define LIBAPIENTRY __stdcall
#endif
|