Major changes to NVR, system initialization (pc.c), and what goes on in the Windows startup (win.c.) Not fully done yet, but good enough for a first commit.

This commit is contained in:
waltje
2017-10-07 00:46:54 -04:00
parent 95fe21b651
commit 2b37b7fbfb
108 changed files with 5628 additions and 5912 deletions

View File

@@ -1,6 +1,9 @@
/* Copyright holders: Sarah Walker, Tenshi
see COPYING for more details
*/
#ifndef EMU_VIDEO_H
# define EMU_VIDEO_H
typedef struct
{
@@ -28,7 +31,9 @@ extern BITMAP *buffer, *buffer32;
int video_card_available(int card);
char *video_card_getname(int card);
struct device_t *video_card_getdevice(int card);
#ifdef EMU_DEVICE_H
device_t *video_card_getdevice(int card);
#endif
int video_card_has_config(int card);
int video_card_getid(char *s);
int video_old_to_new(int card);
@@ -122,3 +127,6 @@ void updatewindowsize(int x, int y);
#ifdef ENABLE_VRAM_DUMP
void svga_dump_vram(void);
#endif
#endif /*EMU_VIDEO_H*/