summaryrefslogtreecommitdiff
path: root/include/cursor.h
blob: fda4bbd01c2d7534095a72ece52e2900a5499b75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * This is a separate file because image.h cannot be
 * included in many of the graphics drivers due to
 * name conflicts
 */

typedef struct Drawcursor Drawcursor;
struct Drawcursor
{
	int	hotx;
	int	hoty;
	int	minx;
	int	miny;
	int	maxx;
	int	maxy;
	uchar*	data;
};

void	drawcursor(Drawcursor*);