mirror of
https://github.com/cc65/cc65.git
synced 2025-01-28 00:30:12 +00:00
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
This commit is contained in:
parent
3c74435ac4
commit
6ae943402d
@ -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.
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user