sdl

FORK: Simple Directmedia Layer
git clone https://git.neptards.moe/neptards/sdl.git
Log | Files | Refs

SDL_x11dyn.h (3278B)


      1 /*
      2   Simple DirectMedia Layer
      3   Copyright (C) 1997-2020 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_SYM(rc,fn,params,args,ret) \
     90     typedef rc (*SDL_DYNX11FN_##fn) params; \
     91     extern SDL_DYNX11FN_##fn X11_##fn;
     92 #include "SDL_x11sym.h"
     93 
     94 /* Annoying varargs entry point... */
     95 #ifdef X_HAVE_UTF8_STRING
     96 typedef XIC(*SDL_DYNX11FN_XCreateIC) (XIM,...);
     97 typedef char *(*SDL_DYNX11FN_XGetICValues) (XIC, ...);
     98 extern SDL_DYNX11FN_XCreateIC X11_XCreateIC;
     99 extern SDL_DYNX11FN_XGetICValues X11_XGetICValues;
    100 #endif
    101 
    102 /* These SDL_X11_HAVE_* flags are here whether you have dynamic X11 or not. */
    103 #define SDL_X11_MODULE(modname) extern int SDL_X11_HAVE_##modname;
    104 #include "SDL_x11sym.h"
    105 
    106 #ifdef __cplusplus
    107 }
    108 #endif
    109 
    110 #endif                          /* !defined SDL_x11dyn_h_ */
    111 /* vi: set ts=4 sw=4 expandtab: */