forked from vbsw/xlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xlib.h
27 lines (23 loc) · 1.31 KB
/
xlib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2016 Vitali Baumtrok
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef GOXLIB_H
#define GOXLIB_H
extern void xlib_xevent_type ( const XEvent *const xevent, int *const xevent_type_return );
extern void xlib_xkeyevent_values ( const XEvent *const xevent,
unsigned long *const serial_return,
Bool *const send_event_return,
Display **const display_return,
Window *const window_return,
Window *const root_return,
Window *const subwindow_return,
Time *const time_return,
int *const x_return,
int *const y_return,
int *const x_root_return,
int *const y_root_return,
unsigned int *const state_return,
unsigned int *const keycode_return,
Bool *const same_screen_return);
#endif /* GOXLIB_H */