17 lines
341 B
C
17 lines
341 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, int *z);
|
|
extern int mousecapture;
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|