From: cuz Date: Mon, 21 Nov 2005 20:40:56 +0000 (+0000) Subject: Two functions in the mouse_callbacks struct do actually have arguments. X-Git-Tag: V2.12.0~186 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6ae943402d97f7f67b3e4acf0c97cb17fd772b59;p=cc65 Two functions in the mouse_callbacks struct do actually have arguments. Report by Oliver Schmidt. git-svn-id: svn://svn.cc65.org/cc65/trunk@3664 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/mouse.h b/include/mouse.h index 1a8745572..6b48a8d85 100644 --- a/include/mouse.h +++ b/include/mouse.h @@ -82,12 +82,12 @@ struct mouse_callbacks { void (*show) (void); /* Show the mouse cursor */ - void (*movex) (void); + void __fastcall__ (*movex) (int x); /* Move the mouse cursor to the new X coordinate. This function is called, * even when the cursor is currently invisible. */ - void (*movey) (void); + void __fastcall__ (*movey) (int y); /* Move the mouse cursor to the new Y coordinate. This function is called, * even when the cursor is currently invisible. */