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

@@ -1010,7 +1010,7 @@ void incolor_poll(void *p)
}
}
void *incolor_init()
void *incolor_init(device_t *info)
{
int c;
incolor_t *incolor = malloc(sizeof(incolor_t));
@@ -1061,11 +1061,14 @@ void incolor_speed_changed(void *p)
device_t incolor_device =
{
"Hercules InColor",
0,
0, 0,
incolor_init,
incolor_close,
NULL,
NULL,
incolor_speed_changed,
NULL,
NULL,
NULL,
NULL
};