Atlas - SDL_x11dyn.h

Home / ext / SDL / src / video / x11 Lines: 1 | Size: 3054 bytes [Download] [Show on GitHub] [Search similar files] [Raw] [Raw (proxy)]
[FILE BEGIN]
1/* 2 Simple DirectMedia Layer 3 Copyright (C) 1997-2025 Sam Lantinga <[email protected]> 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_XKBLIB 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#ifdef SDL_VIDEO_DRIVER_X11_XTEST 75#include <X11/extensions/XTest.h> 76#endif 77 78#ifdef __cplusplus 79extern "C" { 80#endif 81 82// evil function signatures... 83typedef Bool (*SDL_X11_XESetWireToEventRetType)(Display *, XEvent *, xEvent *); 84typedef int (*SDL_X11_XSynchronizeRetType)(Display *); 85typedef Status (*SDL_X11_XESetEventToWireRetType)(Display *, XEvent *, xEvent *); 86 87extern bool SDL_X11_LoadSymbols(void); 88extern void SDL_X11_UnloadSymbols(void); 89 90// Declare all the function pointers and wrappers... 91#define SDL_X11_SYM(rc, fn, params) \ 92 typedef rc(*SDL_DYNX11FN_##fn) params; \ 93 extern SDL_DYNX11FN_##fn X11_##fn; 94#include "SDL_x11sym.h" 95 96/* These SDL_X11_HAVE_* flags are here whether you have dynamic X11 or not. */ 97#define SDL_X11_MODULE(modname) extern int SDL_X11_HAVE_##modname; 98#include "SDL_x11sym.h" 99 100#ifdef __cplusplus 101} 102#endif 103 104#endif // !defined SDL_x11dyn_h_ 105
[FILE END]
(C) 2025 0x4248 (C) 2025 4248 Media and 4248 Systems, All part of 0x4248 See LICENCE files for more information. Not all files are by 0x4248 always check Licencing.