1 /* 2 SDL - Simple DirectMedia Layer 3 Copyright (C) 1997-2004 Sam Lantinga 4 5 This library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Library General Public 7 License as published by the Free Software Foundation; either 8 version 2 of the License, or (at your option) any later version. 9 10 This library is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 Library General Public License for more details. 14 15 You should have received a copy of the GNU Library General Public 16 License along with this library; if not, write to the Free 17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 19 Sam Lantinga 20 slouken (at) libsdl.org 21 */ 22 #include "SDL_config.h" 23 24 #ifndef _SDL_x11dyn_h 25 #define _SDL_x11dyn_h 26 27 #include <X11/Xlib.h> 28 #include <X11/Xutil.h> 29 #include <X11/Xatom.h> 30 #include <X11/Xlibint.h> 31 #include <X11/Xproto.h> 32 33 #include "../Xext/extensions/Xext.h" 34 #include "../Xext/extensions/extutil.h" 35 36 #ifndef NO_SHARED_MEMORY 37 #include <sys/ipc.h> 38 #include <sys/shm.h> 39 #include <X11/extensions/XShm.h> 40 #endif 41 42 #if SDL_VIDEO_DRIVER_X11_XRANDR 43 #include <X11/extensions/Xrandr.h> 44 #endif 45 46 /* 47 * When using the "dynamic X11" functionality, we duplicate all the Xlib 48 * symbols that would be referenced by SDL inside of SDL itself. 49 * These duplicated symbols just serve as passthroughs to the functions 50 * in Xlib, that was dynamically loaded. 51 * 52 * This allows us to use Xlib as-is when linking against it directly, but 53 * also handles all the strange cases where there was code in the Xlib 54 * headers that may or may not exist or vary on a given platform. 55 */ 56 #ifdef __cplusplus 57 extern "C" { 58 #endif 59 60 /* evil function signatures... */ 61 typedef Bool (*SDL_X11_XESetWireToEventRetType)(Display*,XEvent*,xEvent*); 62 typedef int (*SDL_X11_XSynchronizeRetType)(Display*); 63 typedef Status (*SDL_X11_XESetEventToWireRetType)(Display*,XEvent*,xEvent*); 64 65 int SDL_X11_LoadSymbols(void); 66 void SDL_X11_UnloadSymbols(void); 67 68 /* That's really annoying...make this a function pointer no matter what. */ 69 #ifdef X_HAVE_UTF8_STRING 70 extern XIC (*pXCreateIC)(XIM,...); 71 extern char *(*pXGetICValues)(XIC, ...); 72 #endif 73 74 /* These SDL_X11_HAVE_* flags are here whether you have dynamic X11 or not. */ 75 #define SDL_X11_MODULE(modname) extern int SDL_X11_HAVE_##modname; 76 #define SDL_X11_SYM(rc,fn,params,args,ret) 77 #include "SDL_x11sym.h" 78 #undef SDL_X11_MODULE 79 #undef SDL_X11_SYM 80 81 82 #ifdef __cplusplus 83 } 84 #endif 85 86 #endif /* !defined _SDL_x11dyn_h */ 87 88