mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 18:08:20 -07:00
17 lines
333 B
C
17 lines
333 B
C
/* Copyright holders: Sarah Walker
|
|
see COPYING for more details
|
|
*/
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void mouse_init();
|
|
void mouse_close();
|
|
extern int mouse_buttons;
|
|
void mouse_poll_host();
|
|
void mouse_get_mickeys(int *x, int *y);
|
|
extern int mousecapture;
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|