xref: /haiku/src/preferences/appearance/SysCursorAPI.h (revision 3cb015b1ee509d69c643506e8ff573808c86dcfc)
1 #ifndef SYSCURSOR_API_H_
2 #define SYSCURSOR_API_H_
3 
4 #include <SysCursor.h>
5 #include <Bitmap.h>
6 #include <Cursor.h>
7 
8 void set_syscursor(cursor_which which, const BCursor *cursor);
9 void set_syscursor(cursor_which which, const BBitmap *bitmap);
10 
11 cursor_which get_syscursor(void);
12 
13 void setcursor(cursor_which which);
14 
15 #endif
16