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,8 +1,15 @@
#ifndef EMU_SOUND_MIDI_H
# define EMU_SOUND_MIDI_H
extern int midi_device_current;
int midi_device_available(int card);
char *midi_device_getname(int card);
struct device_t *midi_device_getdevice(int card);
#ifdef EMU_DEVICE_H
device_t *midi_device_getdevice(int card);
#endif
int midi_device_has_config(int card);
char *midi_device_get_internal_name(int card);
int midi_device_get_from_internal_name(char *s);
@@ -32,4 +39,7 @@ void midi_poll();
#else
#define SYSTEM_MIDI_NAME "System MIDI"
#define SYSTEM_MIDI_INTERNAL_NAME "system_midi"
#endif
#endif
#endif /*EMU_SOUND_MIDI_H*/