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