Updated to new MM header organization.

diff --git a/multimedia/midi.c b/multimedia/midi.c
index 02b2a73..a40d39f 100644
--- a/multimedia/midi.c
+++ b/multimedia/midi.c
@@ -17,7 +17,8 @@
 #include <fcntl.h>
 #include <sys/ioctl.h>
 #include "winuser.h"
-#include "multimedia.h"
+#include "mmddk.h"
+#include "oss.h"
 #include "driver.h"
 #include "debugtools.h"
 #include "heap.h"
@@ -27,6 +28,8 @@
 
 #ifdef HAVE_OSS_MIDI
 
+#define MIDI_SEQ "/dev/sequencer"
+
 typedef struct {
     int			state;
     DWORD		bufsize;
@@ -128,13 +131,13 @@
 #endif
 
 /**************************************************************************
- * 			MULTIMEDIA_MidiInit			[internal]
+ * 			OSS_MidiInit				[internal]
  *
  * Initializes the MIDI devices information variables
  *
  */
 /* FIXME: this function shall be moved to the OSS drivers DLL entry point */
-BOOL MULTIMEDIA_MidiInit(void)
+BOOL OSS_MidiInit(void)
 {
 #ifdef HAVE_OSS_MIDI
     int 		i, status, numsynthdevs = 255, nummididevs = 255;