SDL  2.0
SDL_x11dyn.h
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 #include "../../SDL_internal.h"
22 
23 #ifndef _SDL_x11dyn_h
24 #define _SDL_x11dyn_h
25 
26 #include <X11/Xlib.h>
27 #include <X11/Xutil.h>
28 #include <X11/Xatom.h>
29 
30 #if SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM
31 #include <X11/XKBlib.h>
32 #endif
33 
34 /* Apparently some X11 systems can't include this multiple times... */
35 #ifndef SDL_INCLUDED_XLIBINT_H
36 #define SDL_INCLUDED_XLIBINT_H 1
37 #include <X11/Xlibint.h>
38 #endif
39 
40 #include <X11/Xproto.h>
41 #include <X11/extensions/Xext.h>
42 #include <X11/extensions/extutil.h>
43 
44 #ifndef NO_SHARED_MEMORY
45 #include <sys/ipc.h>
46 #include <sys/shm.h>
47 #include <X11/extensions/XShm.h>
48 #endif
49 
50 #if SDL_VIDEO_DRIVER_X11_XCURSOR
51 #include <X11/Xcursor/Xcursor.h>
52 #endif
53 #if SDL_VIDEO_DRIVER_X11_XDBE
54 #include <X11/extensions/Xdbe.h>
55 #endif
56 #if SDL_VIDEO_DRIVER_X11_XINERAMA
57 #include <X11/extensions/Xinerama.h>
58 #endif
59 #if SDL_VIDEO_DRIVER_X11_XINPUT2
60 #include <X11/extensions/XInput2.h>
61 #endif
62 #if SDL_VIDEO_DRIVER_X11_XRANDR
63 #include <X11/extensions/Xrandr.h>
64 #endif
65 #if SDL_VIDEO_DRIVER_X11_XSCRNSAVER
66 #include <X11/extensions/scrnsaver.h>
67 #endif
68 #if SDL_VIDEO_DRIVER_X11_XSHAPE
69 #include <X11/extensions/shape.h>
70 #endif
71 #if SDL_VIDEO_DRIVER_X11_XVIDMODE
72 #include <X11/extensions/xf86vmode.h>
73 #endif
74 
75 #ifdef __cplusplus
76 extern "C"
77 {
78 #endif
79 
80 /* evil function signatures... */
81 typedef Bool(*SDL_X11_XESetWireToEventRetType) (Display *, XEvent *, xEvent *);
82 typedef int (*SDL_X11_XSynchronizeRetType) (Display *);
83 typedef Status(*SDL_X11_XESetEventToWireRetType) (Display *, XEvent *, xEvent *);
84 
85 int SDL_X11_LoadSymbols(void);
86 void SDL_X11_UnloadSymbols(void);
87 
88 /* Declare all the function pointers and wrappers... */
89 #define SDL_X11_MODULE(modname)
90 #define SDL_X11_SYM(rc,fn,params,args,ret) \
91  typedef rc (*SDL_DYNX11FN_##fn) params; \
92  extern SDL_DYNX11FN_##fn X11_##fn;
93 #include "SDL_x11sym.h"
94 #undef SDL_X11_MODULE
95 #undef SDL_X11_SYM
96 
97 /* Annoying varargs entry point... */
98 #ifdef X_HAVE_UTF8_STRING
99 typedef XIC(*SDL_DYNX11FN_XCreateIC) (XIM,...);
100 typedef char *(*SDL_DYNX11FN_XGetICValues) (XIC, ...);
101 extern SDL_DYNX11FN_XCreateIC X11_XCreateIC;
102 extern SDL_DYNX11FN_XGetICValues X11_XGetICValues;
103 #endif
104 
105 /* These SDL_X11_HAVE_* flags are here whether you have dynamic X11 or not. */
106 #define SDL_X11_MODULE(modname) extern int SDL_X11_HAVE_##modname;
107 #define SDL_X11_SYM(rc,fn,params,args,ret)
108 #include "SDL_x11sym.h"
109 #undef SDL_X11_MODULE
110 #undef SDL_X11_SYM
111 
112 #ifdef __cplusplus
113 }
114 #endif
115 
116 #endif /* !defined _SDL_x11dyn_h */
117 /* vi: set ts=4 sw=4 expandtab: */
int(* SDL_X11_XSynchronizeRetType)(Display *)
Definition: SDL_x11dyn.h:82
Status(* SDL_X11_XESetEventToWireRetType)(Display *, XEvent *, xEvent *)
Definition: SDL_x11dyn.h:83
int SDL_X11_LoadSymbols(void)
Bool(* SDL_X11_XESetWireToEventRetType)(Display *, XEvent *, xEvent *)
Definition: SDL_x11dyn.h:81
void SDL_X11_UnloadSymbols(void)