2017-10-14 13:38:05 -04:00
|
|
|
/*
|
|
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of the 86Box distribution.
|
|
|
|
|
*
|
|
|
|
|
* Definitions for the VNC renderer.
|
|
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-10-14 13:38:05 -04:00
|
|
|
*
|
2017-10-23 05:20:18 -04:00
|
|
|
* Author: Fred N. van Kempen, <decwiz@yahoo.com>
|
2017-10-14 13:38:05 -04:00
|
|
|
*
|
|
|
|
|
* Copyright 2017 Fred N. van Kempen.
|
|
|
|
|
*/
|
2017-10-19 04:27:04 -04:00
|
|
|
#ifndef EMU_VNC_H
|
|
|
|
|
# define EMU_VNC_H
|
2017-10-14 13:38:05 -04:00
|
|
|
|
|
|
|
|
|
2017-10-19 04:27:04 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
extern int vnc_init(void *);
|
2017-10-14 13:38:05 -04:00
|
|
|
extern void vnc_close(void);
|
|
|
|
|
extern void vnc_resize(int x, int y);
|
|
|
|
|
extern int vnc_pause(void);
|
|
|
|
|
|
2017-10-23 05:20:18 -04:00
|
|
|
extern void vnc_kbinput(int, int);
|
|
|
|
|
|
2017-10-14 13:38:05 -04:00
|
|
|
extern void vnc_take_screenshot(wchar_t *fn);
|
|
|
|
|
|
2017-10-19 04:27:04 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-10-14 13:38:05 -04:00
|
|
|
|
2017-10-19 04:27:04 -04:00
|
|
|
#endif /*EMU_VNC_H*/
|