mirror of
https://github.com/LIV2/WinUAE.git
synced 2025-12-06 00:12:52 +00:00
19 lines
334 B
C
19 lines
334 B
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#ifndef UAE
|
|
|
|
void mouse_init();
|
|
void mouse_close();
|
|
extern int mouse_buttons;
|
|
void mouse_poll_host();
|
|
void mouse_get_mickeys(int *x, int *y, int *z);
|
|
extern int mousecapture;
|
|
#endif
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#ifdef UAE
|
|
extern int mouse_buttons;
|
|
#endif
|