gfx.h
changeset 1914 5ede46fd496f
parent 1829 0b6de3b4458a
child 1991 f3d5e35731a2
--- a/gfx.h	Mon Jun 06 13:11:35 2005 +0000
+++ b/gfx.h	Mon Jun 06 13:47:06 2005 +0000
@@ -20,10 +20,10 @@
 typedef struct CursorVars {
 	Point pos, size, offs, delta;
 	Point draw_pos, draw_size;
-	uint32 sprite;
+	CursorID sprite;
 
 	int wheel; // mouse wheel movement
-	const uint16 *animate_list, *animate_cur;
+	const CursorID *animate_list, *animate_cur;
 	uint animate_timeout;
 
 	bool visible;
@@ -60,7 +60,7 @@
 void DrawOverlappedWindowForAll(int left, int top, int right, int bottom);
 
 void SetMouseCursor(uint cursor);
-void SetAnimatedMouseCursor(const uint16 *table);
+void SetAnimatedMouseCursor(const CursorID *table);
 void CursorTick(void);
 void DrawMouseCursor(void);
 void ScreenSizeChanged(void);