From 6ae943402d97f7f67b3e4acf0c97cb17fd772b59 Mon Sep 17 00:00:00 2001 From: cuz Date: Mon, 21 Nov 2005 20:40:56 +0000 Subject: [PATCH] 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 --- include/mouse.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. */