1
0
mirror of https://github.com/simh/simh.git synced 2026-01-27 12:32:24 +00:00

VIDEO: Add API for querying and setting fullscreen mode.

This commit is contained in:
Lars Brinkhoff
2020-07-08 08:28:35 +02:00
parent 9711fc017b
commit d93bfe62de
2 changed files with 28 additions and 0 deletions

View File

@@ -198,6 +198,8 @@ t_stat vid_show_release_key (FILE* st, UNIT* uptr, int32 val, CONST void* desc);
t_stat vid_show_video (FILE* st, UNIT* uptr, int32 val, CONST void* desc);
t_stat vid_show (FILE* st, DEVICE *dptr, UNIT* uptr, int32 val, CONST char* desc);
t_stat vid_screenshot (const char *filename);
t_bool vid_is_fullscreen (void);
t_stat vid_set_fullscreen (t_bool flag);
extern t_bool vid_active;
void vid_set_cursor_position (int32 x, int32 y); /* cursor position (set by calling code) */