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:
@@ -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*/
|
||||
|
||||
Reference in New Issue
Block a user