1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef CURSORS_H #define CURSORS_H typedef struct { GdkCursor *cursor; int hot_x, hot_y; char **xpm; } GnumericCursorDef; #define GNUMERIC_CURSOR_FAT_CROSS 0 #define GNUMERIC_CURSOR_THIN_CROSS 1 #define GNUMERIC_CURSOR_ARROW 2 extern GnumericCursorDef gnumeric_cursors []; void cursors_init (void); void cursors_shutdown (void); #endif