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:
@@ -82,12 +82,12 @@ struct mouse_callbacks {
|
|||||||
void (*show) (void);
|
void (*show) (void);
|
||||||
/* Show the mouse cursor */
|
/* 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,
|
/* Move the mouse cursor to the new X coordinate. This function is called,
|
||||||
* even when the cursor is currently invisible.
|
* 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,
|
/* Move the mouse cursor to the new Y coordinate. This function is called,
|
||||||
* even when the cursor is currently invisible.
|
* even when the cursor is currently invisible.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user