1 /* 2 * This is a separate file because image.h cannot be 3 * included in many of the graphics drivers due to 4 * name conflicts 5 */ 6 7 typedef struct Drawcursor Drawcursor; 8 struct Drawcursor 9 { 10 int hotx; 11 int hoty; 12 int minx; 13 int miny; 14 int maxx; 15 int maxy; 16 uchar* data; 17 }; 18 19 void drawcursor(Drawcursor*); 20