ref: 2459e34d77e2e21ef829c0dfaafd99433899494f
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*);