mirror of
https://github.com/sarah-walker-pcem/pcem.git
synced 2025-07-23 11:43:03 +02:00
18 lines
322 B
C
18 lines
322 B
C
#ifndef _PLAT_MOUSE_H_
|
|
#define _PLAT_MOUSE_H_
|
|
#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
|
|
|
|
#endif /* _PLAT_MOUSE_H_ */
|