ref: 73d7f19cdee40eff4e78c2326c4c338828b57945
dir: /include/cursor.h/
/* * 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*);