1
0
mirror of https://github.com/simh/simh.git synced 2026-02-10 18:21:15 +00:00

VIDEO: Add window title to vid_open.

This commit is contained in:
Mark Pizzolato
2016-01-28 11:29:53 -08:00
parent 00e8c80c7b
commit 4f3dd08314
3 changed files with 12 additions and 7 deletions

View File

@@ -171,7 +171,7 @@ struct key_event {
typedef struct mouse_event SIM_MOUSE_EVENT;
typedef struct key_event SIM_KEY_EVENT;
t_stat vid_open (DEVICE *dptr, uint32 width, uint32 height, int flags);
t_stat vid_open (DEVICE *dptr, const char *title, uint32 width, uint32 height, int flags);
#define SIM_VID_INPUTCAPTURED 1 /* Mouse and Keyboard input captured (calling */
/* code responsible for cursor display in video) */
t_stat vid_close (void);