URI:
       txlib_shared.h - ltk - Socket-based GUI for X11 (WIP)
  HTML git clone git://lumidify.org/ltk.git (fast, but not encrypted)
  HTML git clone https://lumidify.org/git/ltk.git (encrypted, but very slow)
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       txlib_shared.h (486B)
       ---
            1 #ifndef XLIB_SHARED_H
            2 #define XLIB_SHARED_H
            3 
            4 #include <X11/Xlib.h>
            5 #include <X11/extensions/Xdbe.h>
            6 
            7 struct ltk_renderdata {
            8         Display *dpy;
            9         Visual *vis;
           10         Colormap cm;
           11         GC gc;
           12         int screen;
           13         Atom wm_delete_msg;
           14         Window xwindow;
           15         XdbeBackBuffer back_buf;
           16         Drawable drawable;
           17         int depth;
           18         XIM xim;
           19         XIC xic;
           20         XPoint spot;
           21         XVaNestedList spotlist;
           22         int xkb_event_type;
           23         int xkb_supported;
           24 };
           25 
           26 #endif /* XLIB_SHARED_H */