xref: /inferno-os/include/cursor.h (revision 37da2899f40661e3e9631e497da8dc59b971cbd0)
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