diff options
Diffstat (limited to 'src/x11.zig')
-rw-r--r-- | src/x11.zig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/x11.zig b/src/x11.zig new file mode 100644 index 0000000..faea858 --- /dev/null +++ b/src/x11.zig @@ -0,0 +1,14 @@ +const xlib = @cImport({ @cInclude("X11/Xlib.h"); }); +pub const Atom = xlib.Atom; +pub const Display = xlib.Display; +pub const Event = xlib.XEvent; +pub const False = xlib.False; +pub const Window = xlib.Window; +pub const closeDisplay = xlib.XCloseDisplay; +pub const getAtom = xlib.XInternAtom; +pub const getDefaultRootWindow = xlib.XDefaultRootWindow; +pub const nextEvent = xlib.XNextEvent; +pub const openDisplay = xlib.XOpenDisplay; + +const xfixes = @import("xfixes.zig"); +pub const getSelection = xfixes.getSelection; |