From d8150d92150b08ade63d7cd8b666cb26551110ff Mon Sep 17 00:00:00 2001 From: "Charles.Forsyth" Date: Wed, 25 Mar 2009 16:16:00 +0000 Subject: x20090325-1615 --- 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