From 37da2899f40661e3e9631e497da8dc59b971cbd0 Mon Sep 17 00:00:00 2001 From: "Charles.Forsyth" Date: Fri, 22 Dec 2006 17:07:39 +0000 Subject: 20060303a --- include/cursor.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 include/cursor.h (limited to 'include/cursor.h') diff --git a/include/cursor.h b/include/cursor.h new file mode 100644 index 00000000..fda4bbd0 --- /dev/null +++ b/include/cursor.h @@ -0,0 +1,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*); -- cgit v1.2.3