1/*
2 Simple DirectMedia Layer
3 Copyright (C) 1997-2025 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#include <X11/Xresource.h>
30
31#ifdef SDL_VIDEO_DRIVER_X11_HAS_XKBLOOKUPKEYSYM
32#include <X11/XKBlib.h>
33#endif
34
35// Apparently some X11 systems can't include this multiple times...
36#ifndef SDL_INCLUDED_XLIBINT_H
37#define SDL_INCLUDED_XLIBINT_H 1
38#include <X11/Xlibint.h>
39#endif
40
41#include <X11/Xproto.h>
42#include <X11/extensions/Xext.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#ifdef SDL_VIDEO_DRIVER_X11_XCURSOR
51#include <X11/Xcursor/Xcursor.h>
52#endif
53#ifdef SDL_VIDEO_DRIVER_X11_XDBE
54#include <X11/extensions/Xdbe.h>
55#endif
56#if defined(SDL_VIDEO_DRIVER_X11_XINPUT2) || defined(SDL_VIDEO_DRIVER_X11_XFIXES)
57#include <X11/extensions/XInput2.h>
58#endif
59#ifdef SDL_VIDEO_DRIVER_X11_XFIXES
60#include <X11/extensions/Xfixes.h>
61#endif
62#ifdef SDL_VIDEO_DRIVER_X11_XSYNC
63#include <X11/extensions/sync.h>
64#endif
65#ifdef SDL_VIDEO_DRIVER_X11_XRANDR
66#include <X11/extensions/Xrandr.h>
67#endif
68#ifdef SDL_VIDEO_DRIVER_X11_XSCRNSAVER
69#include <X11/extensions/scrnsaver.h>
70#endif
71#ifdef SDL_VIDEO_DRIVER_X11_XSHAPE
72#include <X11/extensions/shape.h>
73#endif
74
75#ifdef __cplusplus
76extern "C" {
77#endif
78
79// evil function signatures...
80typedef Bool (*SDL_X11_XESetWireToEventRetType)(Display *, XEvent *, xEvent *);
81typedef int (*SDL_X11_XSynchronizeRetType)(Display *);
82typedef Status (*SDL_X11_XESetEventToWireRetType)(Display *, XEvent *, xEvent *);
83
84extern bool SDL_X11_LoadSymbols(void);
85extern void SDL_X11_UnloadSymbols(void);
86
87// Declare all the function pointers and wrappers...
88#define SDL_X11_SYM(rc, fn, params, args, ret) \
89 typedef rc(*SDL_DYNX11FN_##fn) params; \
90 extern SDL_DYNX11FN_##fn X11_##fn;
91#include "SDL_x11sym.h"
92
93// Annoying varargs entry point...
94#ifdef X_HAVE_UTF8_STRING
95typedef XIC (*SDL_DYNX11FN_XCreateIC)(XIM, ...);
96typedef char *(*SDL_DYNX11FN_XGetICValues)(XIC, ...);
97typedef char *(*SDL_DYNX11FN_XSetICValues)(XIC, ...);
98typedef XVaNestedList (*SDL_DYNX11FN_XVaCreateNestedList)(int, ...);
99extern SDL_DYNX11FN_XCreateIC X11_XCreateIC;
100extern SDL_DYNX11FN_XGetICValues X11_XGetICValues;
101extern SDL_DYNX11FN_XSetICValues X11_XSetICValues;
102extern SDL_DYNX11FN_XVaCreateNestedList X11_XVaCreateNestedList;
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#include "SDL_x11sym.h"
108
109#ifdef __cplusplus
110}
111#endif
112
113#endif // !defined SDL_x11dyn_h_
114