Added checks for sys/errno.h, sys/signal.h and sys/mman.h.
[wine] / include / wine_gl.h
1 /* Wrapper for OpenGL includes...
2      Copyright 1998 - Lionel Ulmer
3
4    This wrapper is needed because Mesa uses also the CALLBACK / WINAPI
5    constants. */
6
7 #ifndef __WINE_WINE_GL_H
8 #define __WINE_WINE_GL_H
9
10 #include "config.h"
11
12 #if defined(HAVE_LIBMESAGL) && defined(HAVE_GL_OSMESA_H)
13
14 #define HAVE_MESAGL
15
16 #undef APIENTRY
17 #undef CALLBACK
18 #undef WINAPI
19
20 #include <GL/gl.h>
21 /* These will need to have some #ifdef / #endif added to support
22    more than the X11 using OSMesa target */
23 #include <GL/osmesa.h>
24 #include <GL/glx.h>
25
26 #undef APIENTRY
27 #undef CALLBACK
28 #undef WINAPI
29
30 /* Redefines the constants */
31 #define CALLBACK    __stdcall
32 #define WINAPI      __stdcall
33 #define APIENTRY    WINAPI
34
35 #else /* HAVE_LIBMESAGL */
36
37 #undef HAVE_MESAGL
38
39 #endif /* HAVE_LIBMESAGL */
40
41 #endif /* __WINE_WINE_GL_H */