mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
21 lines
649 B
C
21 lines
649 B
C
|
#pragma once
|
||
|
|
||
|
#include <X11/Xutil.h>
|
||
|
#include <X11/Xatom.h>
|
||
|
#include <X11/Xlib.h>
|
||
|
#include <X11/extensions/Xfixes.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
extern void goXEventCursorChanged(XFixesCursorNotifyEvent event);
|
||
|
extern void goXEventClipboardUpdated();
|
||
|
extern void goXEventConfigureNotify(Display *display, Window window, char *name, char *role);
|
||
|
extern void goXEventUnmapNotify(Window window);
|
||
|
extern void goXEventError(XErrorEvent *event, char *message);
|
||
|
extern int goXEventActive();
|
||
|
|
||
|
static int XEventError(Display *display, XErrorEvent *event);
|
||
|
void XEventLoop(char *display);
|
||
|
|
||
|
void XFileChooserHide(Display *display, Window window);
|