summaryrefslogtreecommitdiff
path: root/xcb.h
diff options
context:
space:
mode:
authorAxel Wagner <mail@merovius.de>2010-07-19 23:15:50 +0200
committerMichael Stapelberg <michael@stapelberg.de>2010-07-20 22:56:47 +0200
commit0c4b4df75ecaa79081cda1d488e64e16bc64277b (patch)
tree1e33697912c58168bd8c12a782731ac4a66b68cb /xcb.h
parent89434b4a88058e6fc4e8cd2ef20758d43098a27d (diff)
Port the pointer-code to xcb
Diffstat (limited to 'xcb.h')
-rw-r--r--xcb.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/xcb.h b/xcb.h
index 6659024..bae51b2 100644
--- a/xcb.h
+++ b/xcb.h
@@ -5,8 +5,9 @@
xcb_visualtype_t *get_root_visual_type(xcb_screen_t *s);
xcb_window_t open_fullscreen_window(xcb_connection_t *conn, xcb_screen_t *scr, char *color);
-void grab_pointer_and_keyboard(xcb_connection_t *conn, xcb_screen_t *screen);
+void grab_pointer_and_keyboard(xcb_connection_t *conn, xcb_screen_t *screen, xcb_cursor_t cursor);
uint32_t get_mod_mask(xcb_connection_t *conn, xcb_key_symbols_t *symbols, uint32_t keycode);
void dpms_turn_off_screen(xcb_connection_t *conn);
+xcb_cursor_t create_cursor(xcb_connection_t *conn, xcb_screen_t *screen, xcb_window_t win, int choice);
#endif