Simple lua repl for testing
[notion.git] / ioncore / cursor.h
blob6f03a0a603b09468356670062fce5e5b4fe194d9
1 /*
2 * ion/ioncore/cursor.h
4 * Copyright (c) Tuomo Valkonen 1999-2009.
6 * See the included file LICENSE for details.
7 */
9 #ifndef ION_IONCORE_CURSOR_H
10 #define ION_IONCORE_CURSOR_H
12 #include <X11/Xlib.h>
13 #include <X11/cursorfont.h>
15 #define IONCORE_CURSOR_DEFAULT 0
16 #define IONCORE_CURSOR_RESIZE 1
17 #define IONCORE_CURSOR_MOVE 2
18 #define IONCORE_CURSOR_DRAG 3
19 #define IONCORE_CURSOR_WAITKEY 4
20 #define IONCORE_N_CURSORS 5
22 extern void ioncore_init_cursors();
23 extern Cursor ioncore_xcursor(int cursor);
25 #endif /* ION_IONCORE_CURSOR_H */