Another major change round. VNC moved to top level. More cleanups of global data, all VM processing now handled in pc.c (out of the platforms, yay!), and some video cleanups. This build MAY have issues with window sizes, resizing, and fullscreen will not work until the next build- sorry.

This commit is contained in:
waltje
2017-10-19 04:27:04 -04:00
parent bcffcb4d22
commit 1d60a99ea3
36 changed files with 1244 additions and 1001 deletions

View File

@@ -1,16 +1,22 @@
/* Copyright holders: Sarah Walker
see COPYING for more details
*/
extern int mousecapture;
extern int mouse_buttons;
#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;
extern void mouse_init(void);
extern void mouse_close(void);
extern void mouse_process(void);
extern void mouse_poll_host(void);
extern void mouse_get_mickeys(int *x, int *y, int *z);
#ifdef __cplusplus
}
#endif