1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
4 * Sample MIDI Wine Driver for ALSA (basically Linux)
6 * Copyright 1994 Martin Ayotte
7 * Copyright 1998 Luiz Otavio L. Zorzella (init procedures)
8 * Copyright 1998/1999 Eric POUECH :
9 * 98/7 changes for making this MIDI driver work on OSS
10 * current support is limited to MIDI ports of OSS systems
11 * 98/9 rewriting MCI code for MIDI
12 * 98/11 split in midi.c and mcimidi.c
13 * Copyright 2003 Christian Costa :
16 * This library is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU Lesser General Public
18 * License as published by the Free Software Foundation; either
19 * version 2.1 of the License, or (at your option) any later version.
21 * This library is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * Lesser General Public License for more details.
26 * You should have received a copy of the GNU Lesser General Public
27 * License along with this library; if not, write to the Free Software
28 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 * TODO: Finish midi record
53 #include "wine/debug.h"
55 #include <alsa/asoundlib.h>
57 WINE_DEFAULT_DEBUG_CHANNEL(midi);
59 #ifndef SND_SEQ_PORT_TYPE_PORT
60 #define SND_SEQ_PORT_TYPE_PORT (1<<19) /* Appears in version 1.0.12rc1 */
64 int state; /* -1 disabled, 0 is no recording started, 1 in recording, bit 2 set if in sys exclusive recording */
66 MIDIOPENDESC midiDesc;
70 unsigned char incoming[3];
71 unsigned char incPrev;
81 MIDIOPENDESC midiDesc;
85 void* lpExtra; /* according to port type (MIDI, FM...), extra data when needed */
90 static WINE_MIDIIN MidiInDev [MAX_MIDIINDRV ];
91 static WINE_MIDIOUT MidiOutDev[MAX_MIDIOUTDRV];
93 /* this is the total number of MIDI out devices found (synth and port) */
94 static int MODM_NumDevs = 0;
95 /* this is the total number of MIDI out devices found */
96 static int MIDM_NumDevs = 0;
98 static snd_seq_t* midiSeq = NULL;
99 static int numOpenMidiSeq = 0;
100 static int numStartedMidiIn = 0;
105 static CRITICAL_SECTION crit_sect; /* protects all MidiIn buffer queues */
106 static CRITICAL_SECTION_DEBUG critsect_debug =
109 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
110 0, 0, { (DWORD_PTR)(__FILE__ ": crit_sect") }
112 static CRITICAL_SECTION crit_sect = { &critsect_debug, -1, 0, 0, 0, 0 };
114 static int end_thread;
115 static HANDLE hThread;
117 /*======================================================================*
118 * Low level MIDI implementation *
119 *======================================================================*/
121 static int midiOpenSeq(int);
122 static int midiCloseSeq(void);
124 #if 0 /* Debug Purpose */
125 static void error_handler(const char* file, int line, const char* function, int err, const char* fmt, ...)
131 fprintf(stderr, "ALSA lib %s:%i:(%s) ", file, line, function);
132 vfprintf(stderr, fmt, arg);
134 fprintf(stderr, ": %s", snd_strerror(err));
140 /**************************************************************************
141 * MIDI_unixToWindowsDeviceType [internal]
143 * return the Windows equivalent to a Unix Device Type
146 static int MIDI_AlsaToWindowsDeviceType(unsigned int type)
148 /* MOD_MIDIPORT output port
149 * MOD_SYNTH generic internal synth
150 * MOD_SQSYNTH square wave internal synth
151 * MOD_FMSYNTH FM internal synth
152 * MOD_MAPPER MIDI mapper
153 * MOD_WAVETABLE hardware wavetable internal synth
154 * MOD_SWSYNTH software internal synth
157 /* FIXME Is this really the correct equivalence from ALSA to
158 Windows Sound type? */
160 if (type & SND_SEQ_PORT_TYPE_SYNTH)
163 if (type & (SND_SEQ_PORT_TYPE_DIRECT_SAMPLE|SND_SEQ_PORT_TYPE_SAMPLE))
166 if (type & (SND_SEQ_PORT_TYPE_MIDI_GENERIC|SND_SEQ_PORT_TYPE_APPLICATION))
169 ERR("Cannot determine the type (alsa type is %x) of this midi device. Assuming FM Synth\n", type);
173 /**************************************************************************
174 * MIDI_NotifyClient [internal]
176 static void MIDI_NotifyClient(UINT wDevID, WORD wMsg,
177 DWORD_PTR dwParam1, DWORD_PTR dwParam2)
179 DWORD_PTR dwCallBack;
182 DWORD_PTR dwInstance;
184 TRACE("wDevID = %04X wMsg = %d dwParm1 = %04lX dwParam2 = %04lX\n",
185 wDevID, wMsg, dwParam1, dwParam2);
192 if (wDevID > MODM_NumDevs) return;
194 dwCallBack = MidiOutDev[wDevID].midiDesc.dwCallback;
195 uFlags = MidiOutDev[wDevID].wFlags;
196 hDev = MidiOutDev[wDevID].midiDesc.hMidi;
197 dwInstance = MidiOutDev[wDevID].midiDesc.dwInstance;
207 if (wDevID > MIDM_NumDevs) return;
209 dwCallBack = MidiInDev[wDevID].midiDesc.dwCallback;
210 uFlags = MidiInDev[wDevID].wFlags;
211 hDev = MidiInDev[wDevID].midiDesc.hMidi;
212 dwInstance = MidiInDev[wDevID].midiDesc.dwInstance;
215 ERR("Unsupported MSW-MIDI message %u\n", wMsg);
219 DriverCallback(dwCallBack, uFlags, hDev, wMsg, dwInstance, dwParam1, dwParam2);
222 static int midi_warn = 1;
223 /**************************************************************************
224 * midiOpenSeq [internal]
226 static int midiOpenSeq(int create_client)
228 if (numOpenMidiSeq == 0) {
229 if (snd_seq_open(&midiSeq, "default", SND_SEQ_OPEN_DUPLEX, 0) < 0)
233 WARN("Error opening ALSA sequencer.\n");
240 /* Setting the client name is the only init to do */
241 snd_seq_set_client_name(midiSeq, "WINE midi driver");
243 #if 0 /* FIXME: Is it possible to use a port for READ & WRITE ops */
244 port_in = port_out = snd_seq_create_simple_port(midiSeq, "WINE ALSA Input/Output", SND_SEQ_PORT_CAP_READ|SND_SEQ_PORT_CAP_WRITE,
245 SND_SEQ_PORT_TYPE_APPLICATION);
247 TRACE("Unable to create output port\n");
249 TRACE("Outport port created successfully (%d)\n", port_out);
251 port_out = snd_seq_create_simple_port(midiSeq, "WINE ALSA Output", SND_SEQ_PORT_CAP_READ,
252 SND_SEQ_PORT_TYPE_APPLICATION);
254 TRACE("Unable to create output port\n");
256 TRACE("Outport port created successfully (%d)\n", port_out);
258 port_in = snd_seq_create_simple_port(midiSeq, "WINE ALSA Input", SND_SEQ_PORT_CAP_WRITE,
259 SND_SEQ_PORT_TYPE_APPLICATION);
261 TRACE("Unable to create input port\n");
263 TRACE("Input port created successfully (%d)\n", port_in);
271 /**************************************************************************
272 * midiCloseSeq [internal]
274 static int midiCloseSeq(void)
276 if (--numOpenMidiSeq == 0) {
277 snd_seq_delete_simple_port(midiSeq, port_out);
278 snd_seq_delete_simple_port(midiSeq, port_in);
279 snd_seq_close(midiSeq);
285 static DWORD WINAPI midRecThread(LPVOID arg)
290 TRACE("Thread startup\n");
293 TRACE("Thread loop\n");
294 npfd = snd_seq_poll_descriptors_count(midiSeq, POLLIN);
295 pfd = HeapAlloc(GetProcessHeap(), 0, npfd * sizeof(struct pollfd));
296 snd_seq_poll_descriptors(midiSeq, pfd, npfd, POLLIN);
298 /* Check if an event is present */
299 if (poll(pfd, npfd, 250) <= 0) {
300 HeapFree(GetProcessHeap(), 0, pfd);
304 /* Note: This definitely does not work.
305 * while(snd_seq_event_input_pending(midiSeq, 0) > 0) {
307 snd_seq_event_input(midiSeq, &ev);
309 snd_seq_free_event(ev);
315 snd_seq_event_input(midiSeq, &ev);
316 /* Find the target device */
317 for (wDevID = 0; wDevID < MIDM_NumDevs; wDevID++)
318 if ( (ev->source.client == MidiInDev[wDevID].addr.client) && (ev->source.port == MidiInDev[wDevID].addr.port) )
320 if ((wDevID == MIDM_NumDevs) || (MidiInDev[wDevID].state != 1))
321 FIXME("Unexpected event received, type = %x from %d:%d\n", ev->type, ev->source.client, ev->source.port);
323 DWORD dwTime, toSend = 0;
325 /* FIXME: Should use ev->time instead for better accuracy */
326 dwTime = GetTickCount() - MidiInDev[wDevID].startTime;
327 TRACE("Event received, type = %x, device = %d\n", ev->type, wDevID);
330 case SND_SEQ_EVENT_NOTEOFF:
331 toSend = (ev->data.note.velocity << 16) | (ev->data.note.note << 8) | MIDI_CMD_NOTE_OFF | ev->data.control.channel;
333 case SND_SEQ_EVENT_NOTEON:
334 toSend = (ev->data.note.velocity << 16) | (ev->data.note.note << 8) | MIDI_CMD_NOTE_ON | ev->data.control.channel;
336 case SND_SEQ_EVENT_KEYPRESS:
337 toSend = (ev->data.note.velocity << 16) | (ev->data.note.note << 8) | MIDI_CMD_NOTE_PRESSURE | ev->data.control.channel;
339 case SND_SEQ_EVENT_CONTROLLER:
340 toSend = (ev->data.control.value << 16) | (ev->data.control.param << 8) | MIDI_CMD_CONTROL | ev->data.control.channel;
342 case SND_SEQ_EVENT_PITCHBEND:
343 value = ev->data.control.value + 0x2000;
344 toSend = (((value >> 7) & 0x7f) << 16) | ((value & 0x7f) << 8) | MIDI_CMD_BENDER | ev->data.control.channel;
346 case SND_SEQ_EVENT_PGMCHANGE:
347 toSend = ((ev->data.control.value & 0x7f) << 8) | MIDI_CMD_PGM_CHANGE | ev->data.control.channel;
349 case SND_SEQ_EVENT_CHANPRESS:
350 toSend = ((ev->data.control.value & 0x7f) << 8) | MIDI_CMD_CHANNEL_PRESSURE | ev->data.control.channel;
352 case SND_SEQ_EVENT_CLOCK:
355 case SND_SEQ_EVENT_START:
358 case SND_SEQ_EVENT_CONTINUE:
361 case SND_SEQ_EVENT_STOP:
364 case SND_SEQ_EVENT_SONGPOS:
365 toSend = (((ev->data.control.value >> 7) & 0x7f) << 16) | ((ev->data.control.value & 0x7f) << 8) | MIDI_CMD_COMMON_SONG_POS;
367 case SND_SEQ_EVENT_SONGSEL:
368 toSend = ((ev->data.control.value & 0x7f) << 8) | MIDI_CMD_COMMON_SONG_SELECT;
370 case SND_SEQ_EVENT_RESET:
373 case SND_SEQ_EVENT_QFRAME:
374 toSend = ((ev->data.control.value & 0x7f) << 8) | MIDI_CMD_COMMON_MTC_QUARTER;
376 case SND_SEQ_EVENT_SYSEX:
379 int len = ev->data.ext.len;
380 LPBYTE ptr = ev->data.ext.ptr;
383 EnterCriticalSection(&crit_sect);
385 if ((lpMidiHdr = MidiInDev[wDevID].lpQueueHdr) != NULL) {
386 int copylen = min(len, lpMidiHdr->dwBufferLength - lpMidiHdr->dwBytesRecorded);
387 memcpy(lpMidiHdr->lpData + lpMidiHdr->dwBytesRecorded, ptr + pos, copylen);
388 lpMidiHdr->dwBytesRecorded += copylen;
391 /* We check if we reach the end of buffer or the end of sysex before notifying
392 * to handle the case where ALSA split the sysex into several events */
393 if ((lpMidiHdr->dwBytesRecorded == lpMidiHdr->dwBufferLength) ||
394 (*(BYTE*)(lpMidiHdr->lpData + lpMidiHdr->dwBytesRecorded - 1) == 0xF7)) {
395 lpMidiHdr->dwFlags &= ~MHDR_INQUEUE;
396 lpMidiHdr->dwFlags |= MHDR_DONE;
397 MidiInDev[wDevID].lpQueueHdr = lpMidiHdr->lpNext;
398 MIDI_NotifyClient(wDevID, MIM_LONGDATA, (DWORD_PTR)lpMidiHdr, dwTime);
401 FIXME("Sysex data received but no buffer to store it!\n");
405 LeaveCriticalSection(&crit_sect);
408 case SND_SEQ_EVENT_SENSING:
412 FIXME("Unhandled event received, type = %x\n", ev->type);
416 TRACE("Sending event %08x (from %d %d)\n", toSend, ev->source.client, ev->source.port);
417 MIDI_NotifyClient(wDevID, MIM_DATA, toSend, dwTime);
420 snd_seq_free_event(ev);
421 } while(snd_seq_event_input_pending(midiSeq, 0) > 0);
423 HeapFree(GetProcessHeap(), 0, pfd);
428 /**************************************************************************
429 * midGetDevCaps [internal]
431 static DWORD midGetDevCaps(WORD wDevID, LPMIDIINCAPSW lpCaps, DWORD dwSize)
433 TRACE("(%04X, %p, %08X);\n", wDevID, lpCaps, dwSize);
435 if (wDevID >= MIDM_NumDevs) return MMSYSERR_BADDEVICEID;
436 if (lpCaps == NULL) return MMSYSERR_INVALPARAM;
438 memcpy(lpCaps, &MidiInDev[wDevID].caps, min(dwSize, sizeof(*lpCaps)));
440 return MMSYSERR_NOERROR;
444 /**************************************************************************
447 static DWORD midOpen(WORD wDevID, LPMIDIOPENDESC lpDesc, DWORD dwFlags)
449 TRACE("(%04X, %p, %08X);\n", wDevID, lpDesc, dwFlags);
451 if (lpDesc == NULL) {
452 WARN("Invalid Parameter !\n");
453 return MMSYSERR_INVALPARAM;
457 * how to check that content of lpDesc is correct ?
459 if (wDevID >= MIDM_NumDevs) {
460 WARN("wDevID too large (%u) !\n", wDevID);
461 return MMSYSERR_BADDEVICEID;
463 if (MidiInDev[wDevID].state == -1) {
464 WARN("device disabled\n");
465 return MIDIERR_NODEVICE;
467 if (MidiInDev[wDevID].midiDesc.hMidi != 0) {
468 WARN("device already open !\n");
469 return MMSYSERR_ALLOCATED;
471 if ((dwFlags & MIDI_IO_STATUS) != 0) {
472 WARN("No support for MIDI_IO_STATUS in dwFlags yet, ignoring it\n");
473 dwFlags &= ~MIDI_IO_STATUS;
475 if ((dwFlags & ~CALLBACK_TYPEMASK) != 0) {
476 FIXME("Bad dwFlags\n");
477 return MMSYSERR_INVALFLAG;
480 if (midiOpenSeq(1) < 0) {
481 return MMSYSERR_ERROR;
484 /* Connect our app port to the device port */
485 if (snd_seq_connect_from(midiSeq, port_in, MidiInDev[wDevID].addr.client, MidiInDev[wDevID].addr.port) < 0)
486 return MMSYSERR_NOTENABLED;
488 TRACE("input port connected %d %d %d\n",port_in,MidiInDev[wDevID].addr.client,MidiInDev[wDevID].addr.port);
490 if (numStartedMidiIn++ == 0) {
492 hThread = CreateThread(NULL, 0, midRecThread, NULL, 0, NULL);
494 numStartedMidiIn = 0;
495 WARN("Couldn't create thread for midi-in\n");
497 return MMSYSERR_ERROR;
499 SetThreadPriority(hThread, THREAD_PRIORITY_TIME_CRITICAL);
500 TRACE("Created thread for midi-in\n");
503 MidiInDev[wDevID].wFlags = HIWORD(dwFlags & CALLBACK_TYPEMASK);
505 MidiInDev[wDevID].lpQueueHdr = NULL;
506 MidiInDev[wDevID].dwTotalPlayed = 0;
507 MidiInDev[wDevID].bufsize = 0x3FFF;
508 MidiInDev[wDevID].midiDesc = *lpDesc;
509 MidiInDev[wDevID].state = 0;
510 MidiInDev[wDevID].incLen = 0;
511 MidiInDev[wDevID].startTime = 0;
513 MIDI_NotifyClient(wDevID, MIM_OPEN, 0L, 0L);
514 return MMSYSERR_NOERROR;
517 /**************************************************************************
518 * midClose [internal]
520 static DWORD midClose(WORD wDevID)
522 int ret = MMSYSERR_NOERROR;
524 TRACE("(%04X);\n", wDevID);
526 if (wDevID >= MIDM_NumDevs) {
527 WARN("wDevID too big (%u) !\n", wDevID);
528 return MMSYSERR_BADDEVICEID;
530 if (MidiInDev[wDevID].midiDesc.hMidi == 0) {
531 WARN("device not opened !\n");
532 return MMSYSERR_ERROR;
534 if (MidiInDev[wDevID].lpQueueHdr != 0) {
535 return MIDIERR_STILLPLAYING;
538 if (midiSeq == NULL) {
540 return MMSYSERR_ERROR;
542 if (--numStartedMidiIn == 0) {
543 TRACE("Stopping thread for midi-in\n");
545 if (WaitForSingleObject(hThread, 5000) != WAIT_OBJECT_0) {
546 WARN("Thread end not signaled, force termination\n");
547 TerminateThread(hThread, 0);
549 TRACE("Stopped thread for midi-in\n");
552 snd_seq_disconnect_from(midiSeq, port_in, MidiInDev[wDevID].addr.client, MidiInDev[wDevID].addr.port);
555 MidiInDev[wDevID].bufsize = 0;
556 MIDI_NotifyClient(wDevID, MIM_CLOSE, 0L, 0L);
557 MidiInDev[wDevID].midiDesc.hMidi = 0;
563 /**************************************************************************
564 * midAddBuffer [internal]
566 static DWORD midAddBuffer(WORD wDevID, LPMIDIHDR lpMidiHdr, DWORD dwSize)
568 TRACE("(%04X, %p, %08X);\n", wDevID, lpMidiHdr, dwSize);
570 if (wDevID >= MIDM_NumDevs) return MMSYSERR_BADDEVICEID;
571 if (MidiInDev[wDevID].state == -1) return MIDIERR_NODEVICE;
573 if (lpMidiHdr == NULL) return MMSYSERR_INVALPARAM;
574 if (dwSize < offsetof(MIDIHDR,dwOffset)) return MMSYSERR_INVALPARAM;
575 if (lpMidiHdr->dwBufferLength == 0) return MMSYSERR_INVALPARAM;
576 if (lpMidiHdr->dwFlags & MHDR_INQUEUE) return MIDIERR_STILLPLAYING;
577 if (!(lpMidiHdr->dwFlags & MHDR_PREPARED)) return MIDIERR_UNPREPARED;
579 EnterCriticalSection(&crit_sect);
580 lpMidiHdr->dwFlags &= ~WHDR_DONE;
581 lpMidiHdr->dwFlags |= MHDR_INQUEUE;
582 lpMidiHdr->dwBytesRecorded = 0;
583 lpMidiHdr->lpNext = 0;
584 if (MidiInDev[wDevID].lpQueueHdr == 0) {
585 MidiInDev[wDevID].lpQueueHdr = lpMidiHdr;
589 for (ptr = MidiInDev[wDevID].lpQueueHdr; ptr->lpNext != 0;
591 ptr->lpNext = lpMidiHdr;
593 LeaveCriticalSection(&crit_sect);
595 return MMSYSERR_NOERROR;
598 /**************************************************************************
599 * midPrepare [internal]
601 static DWORD midPrepare(WORD wDevID, LPMIDIHDR lpMidiHdr, DWORD dwSize)
603 TRACE("(%04X, %p, %08X);\n", wDevID, lpMidiHdr, dwSize);
605 if (dwSize < offsetof(MIDIHDR,dwOffset) || lpMidiHdr == 0 ||
606 lpMidiHdr->lpData == 0 || (lpMidiHdr->dwFlags & MHDR_INQUEUE) != 0)
607 return MMSYSERR_INVALPARAM;
609 lpMidiHdr->lpNext = 0;
610 lpMidiHdr->dwFlags |= MHDR_PREPARED;
611 lpMidiHdr->dwBytesRecorded = 0;
613 return MMSYSERR_NOERROR;
616 /**************************************************************************
617 * midUnprepare [internal]
619 static DWORD midUnprepare(WORD wDevID, LPMIDIHDR lpMidiHdr, DWORD dwSize)
621 TRACE("(%04X, %p, %08X);\n", wDevID, lpMidiHdr, dwSize);
623 if (wDevID >= MIDM_NumDevs) return MMSYSERR_BADDEVICEID;
624 if (MidiInDev[wDevID].state == -1) return MIDIERR_NODEVICE;
626 if (dwSize < offsetof(MIDIHDR,dwOffset) || lpMidiHdr == 0 ||
627 lpMidiHdr->lpData == 0)
628 return MMSYSERR_INVALPARAM;
630 if (!(lpMidiHdr->dwFlags & MHDR_PREPARED)) return MIDIERR_UNPREPARED;
631 if (lpMidiHdr->dwFlags & MHDR_INQUEUE) return MIDIERR_STILLPLAYING;
633 lpMidiHdr->dwFlags &= ~MHDR_PREPARED;
635 return MMSYSERR_NOERROR;
638 /**************************************************************************
639 * midReset [internal]
641 static DWORD midReset(WORD wDevID)
643 DWORD dwTime = GetTickCount();
645 TRACE("(%04X);\n", wDevID);
647 if (wDevID >= MIDM_NumDevs) return MMSYSERR_BADDEVICEID;
648 if (MidiInDev[wDevID].state == -1) return MIDIERR_NODEVICE;
650 EnterCriticalSection(&crit_sect);
651 while (MidiInDev[wDevID].lpQueueHdr) {
652 MidiInDev[wDevID].lpQueueHdr->dwFlags &= ~MHDR_INQUEUE;
653 MidiInDev[wDevID].lpQueueHdr->dwFlags |= MHDR_DONE;
654 /* FIXME: when called from 16 bit, lpQueueHdr needs to be a segmented ptr */
655 MIDI_NotifyClient(wDevID, MIM_LONGDATA,
656 (DWORD_PTR)MidiInDev[wDevID].lpQueueHdr, dwTime);
657 MidiInDev[wDevID].lpQueueHdr = MidiInDev[wDevID].lpQueueHdr->lpNext;
659 LeaveCriticalSection(&crit_sect);
661 return MMSYSERR_NOERROR;
664 /**************************************************************************
665 * midStart [internal]
667 static DWORD midStart(WORD wDevID)
669 TRACE("(%04X);\n", wDevID);
671 if (wDevID >= MIDM_NumDevs) return MMSYSERR_BADDEVICEID;
672 if (MidiInDev[wDevID].state == -1) return MIDIERR_NODEVICE;
674 MidiInDev[wDevID].state = 1;
675 MidiInDev[wDevID].startTime = GetTickCount();
676 return MMSYSERR_NOERROR;
679 /**************************************************************************
682 static DWORD midStop(WORD wDevID)
684 TRACE("(%04X);\n", wDevID);
686 if (wDevID >= MIDM_NumDevs) return MMSYSERR_BADDEVICEID;
687 if (MidiInDev[wDevID].state == -1) return MIDIERR_NODEVICE;
689 MidiInDev[wDevID].state = 0;
690 return MMSYSERR_NOERROR;
693 /**************************************************************************
694 * modGetDevCaps [internal]
696 static DWORD modGetDevCaps(WORD wDevID, LPMIDIOUTCAPSW lpCaps, DWORD dwSize)
698 TRACE("(%04X, %p, %08X);\n", wDevID, lpCaps, dwSize);
700 if (wDevID >= MODM_NumDevs) return MMSYSERR_BADDEVICEID;
701 if (lpCaps == NULL) return MMSYSERR_INVALPARAM;
703 memcpy(lpCaps, &MidiOutDev[wDevID].caps, min(dwSize, sizeof(*lpCaps)));
705 return MMSYSERR_NOERROR;
708 /**************************************************************************
711 static DWORD modOpen(WORD wDevID, LPMIDIOPENDESC lpDesc, DWORD dwFlags)
713 TRACE("(%04X, %p, %08X);\n", wDevID, lpDesc, dwFlags);
714 if (lpDesc == NULL) {
715 WARN("Invalid Parameter !\n");
716 return MMSYSERR_INVALPARAM;
718 if (wDevID >= MODM_NumDevs) {
719 TRACE("MAX_MIDIOUTDRV reached !\n");
720 return MMSYSERR_BADDEVICEID;
722 if (MidiOutDev[wDevID].midiDesc.hMidi != 0) {
723 WARN("device already open !\n");
724 return MMSYSERR_ALLOCATED;
726 if (!MidiOutDev[wDevID].bEnabled) {
727 WARN("device disabled !\n");
728 return MIDIERR_NODEVICE;
730 if ((dwFlags & ~CALLBACK_TYPEMASK) != 0) {
731 WARN("bad dwFlags\n");
732 return MMSYSERR_INVALFLAG;
734 if (!MidiOutDev[wDevID].bEnabled) {
735 TRACE("disabled wDevID\n");
736 return MMSYSERR_NOTENABLED;
739 MidiOutDev[wDevID].lpExtra = 0;
741 switch (MidiOutDev[wDevID].caps.wTechnology) {
745 if (midiOpenSeq(1) < 0) {
746 return MMSYSERR_ALLOCATED;
750 WARN("Technology not supported (yet) %d !\n",
751 MidiOutDev[wDevID].caps.wTechnology);
752 return MMSYSERR_NOTENABLED;
755 MidiOutDev[wDevID].wFlags = HIWORD(dwFlags & CALLBACK_TYPEMASK);
757 MidiOutDev[wDevID].lpQueueHdr = NULL;
758 MidiOutDev[wDevID].dwTotalPlayed = 0;
759 MidiOutDev[wDevID].bufsize = 0x3FFF;
760 MidiOutDev[wDevID].midiDesc = *lpDesc;
762 /* Connect our app port to the device port */
763 if (snd_seq_connect_to(midiSeq, port_out, MidiOutDev[wDevID].addr.client, MidiOutDev[wDevID].addr.port) < 0)
764 return MMSYSERR_NOTENABLED;
766 MIDI_NotifyClient(wDevID, MOM_OPEN, 0L, 0L);
767 TRACE("Successful !\n");
768 return MMSYSERR_NOERROR;
772 /**************************************************************************
773 * modClose [internal]
775 static DWORD modClose(WORD wDevID)
777 int ret = MMSYSERR_NOERROR;
779 TRACE("(%04X);\n", wDevID);
781 if (MidiOutDev[wDevID].midiDesc.hMidi == 0) {
782 WARN("device not opened !\n");
783 return MMSYSERR_ERROR;
785 /* FIXME: should test that no pending buffer is still in the queue for
788 if (midiSeq == NULL) {
789 WARN("can't close !\n");
790 return MMSYSERR_ERROR;
793 switch (MidiOutDev[wDevID].caps.wTechnology) {
797 snd_seq_disconnect_to(midiSeq, port_out, MidiOutDev[wDevID].addr.client, MidiOutDev[wDevID].addr.port);
801 WARN("Technology not supported (yet) %d !\n",
802 MidiOutDev[wDevID].caps.wTechnology);
803 return MMSYSERR_NOTENABLED;
806 HeapFree(GetProcessHeap(), 0, MidiOutDev[wDevID].lpExtra);
807 MidiOutDev[wDevID].lpExtra = 0;
809 MidiOutDev[wDevID].bufsize = 0;
810 MIDI_NotifyClient(wDevID, MOM_CLOSE, 0L, 0L);
811 MidiOutDev[wDevID].midiDesc.hMidi = 0;
815 /**************************************************************************
818 static DWORD modData(WORD wDevID, DWORD dwParam)
820 BYTE evt = LOBYTE(LOWORD(dwParam));
821 BYTE d1 = HIBYTE(LOWORD(dwParam));
822 BYTE d2 = LOBYTE(HIWORD(dwParam));
824 TRACE("(%04X, %08X);\n", wDevID, dwParam);
826 if (wDevID >= MODM_NumDevs) return MMSYSERR_BADDEVICEID;
827 if (!MidiOutDev[wDevID].bEnabled) return MIDIERR_NODEVICE;
829 if (midiSeq == NULL) {
830 WARN("can't play !\n");
831 return MIDIERR_NODEVICE;
833 switch (MidiOutDev[wDevID].caps.wTechnology) {
837 int handled = 1; /* Assume event is handled */
838 snd_seq_event_t event;
839 snd_seq_ev_clear(&event);
840 snd_seq_ev_set_direct(&event);
841 snd_seq_ev_set_source(&event, port_out);
842 snd_seq_ev_set_dest(&event, MidiOutDev[wDevID].addr.client, MidiOutDev[wDevID].addr.port);
844 switch (evt & 0xF0) {
845 case MIDI_CMD_NOTE_OFF:
846 snd_seq_ev_set_noteoff(&event, evt&0x0F, d1, d2);
848 case MIDI_CMD_NOTE_ON:
849 snd_seq_ev_set_noteon(&event, evt&0x0F, d1, d2);
851 case MIDI_CMD_NOTE_PRESSURE:
852 snd_seq_ev_set_keypress(&event, evt&0x0F, d1, d2);
854 case MIDI_CMD_CONTROL:
855 snd_seq_ev_set_controller(&event, evt&0x0F, d1, d2);
857 case MIDI_CMD_BENDER:
858 snd_seq_ev_set_pitchbend(&event, evt&0x0F, ((WORD)d2 << 7 | (WORD)d1) - 0x2000);
860 case MIDI_CMD_PGM_CHANGE:
861 snd_seq_ev_set_pgmchange(&event, evt&0x0F, d1);
863 case MIDI_CMD_CHANNEL_PRESSURE:
864 snd_seq_ev_set_chanpress(&event, evt&0x0F, d1);
866 case MIDI_CMD_COMMON_SYSEX:
867 switch (evt & 0x0F) {
868 case 0x00: /* System Exclusive, don't do it on modData,
869 * should require modLongData*/
870 case 0x04: /* Undefined. */
871 case 0x05: /* Undefined. */
872 case 0x07: /* End of Exclusive. */
873 case 0x09: /* Undefined. */
874 case 0x0D: /* Undefined. */
877 case 0x06: /* Tune Request */
878 case 0x08: /* Timing Clock. */
879 case 0x0A: /* Start. */
880 case 0x0B: /* Continue */
881 case 0x0C: /* Stop */
882 case 0x0E: /* Active Sensing. */
883 /* FIXME: Is this function suitable for these purposes
884 (and also Song Select and Song Position Pointer) */
885 snd_seq_ev_set_sysex(&event, 1, &evt);
887 case 0x0F: /* Reset */
888 /* snd_seq_ev_set_sysex(&event, 1, &evt);
889 this other way may be better */
891 BYTE reset_sysex_seq[] = {MIDI_CMD_COMMON_SYSEX, 0x7e, 0x7f, 0x09, 0x01, 0xf7};
892 snd_seq_ev_set_sysex(&event, sizeof(reset_sysex_seq), reset_sysex_seq);
895 case 0x01: /* MTC Quarter frame */
896 case 0x03: /* Song Select. */
901 snd_seq_ev_set_sysex(&event, sizeof(buf), buf);
904 case 0x02: /* Song Position Pointer. */
910 snd_seq_ev_set_sysex(&event, sizeof(buf), buf);
917 snd_seq_event_output_direct(midiSeq, &event);
921 WARN("Technology not supported (yet) %d !\n",
922 MidiOutDev[wDevID].caps.wTechnology);
923 return MMSYSERR_NOTENABLED;
926 return MMSYSERR_NOERROR;
929 /**************************************************************************
930 * modLongData [internal]
932 static DWORD modLongData(WORD wDevID, LPMIDIHDR lpMidiHdr, DWORD dwSize)
935 BYTE *lpData, *lpNewData = NULL;
936 snd_seq_event_t event;
938 TRACE("(%04X, %p, %08X);\n", wDevID, lpMidiHdr, dwSize);
940 /* Note: MS doc does not say much about the dwBytesRecorded member of the MIDIHDR structure
941 * but it seems to be used only for midi input.
942 * Taking a look at the WAVEHDR structure (which is quite similar) confirms this assumption.
945 if (wDevID >= MODM_NumDevs) return MMSYSERR_BADDEVICEID;
946 if (!MidiOutDev[wDevID].bEnabled) return MIDIERR_NODEVICE;
948 if (midiSeq == NULL) {
949 WARN("can't play !\n");
950 return MIDIERR_NODEVICE;
953 lpData = (BYTE*)lpMidiHdr->lpData;
956 return MIDIERR_UNPREPARED;
957 if (!(lpMidiHdr->dwFlags & MHDR_PREPARED))
958 return MIDIERR_UNPREPARED;
959 if (lpMidiHdr->dwFlags & MHDR_INQUEUE)
960 return MIDIERR_STILLPLAYING;
961 lpMidiHdr->dwFlags &= ~MHDR_DONE;
962 lpMidiHdr->dwFlags |= MHDR_INQUEUE;
964 /* FIXME: MS doc is not 100% clear. Will lpData only contain system exclusive
965 * data, or can it also contain raw MIDI data, to be split up and sent to
967 * If the latest is true, then the following WARNing will fire up
969 if (lpData[0] != 0xF0 || lpData[lpMidiHdr->dwBufferLength - 1] != 0xF7) {
970 WARN("Alleged system exclusive buffer is not correct\n\tPlease report with MIDI file\n");
971 lpNewData = HeapAlloc(GetProcessHeap(), 0, lpMidiHdr->dwBufferLength + 2);
974 TRACE("dwBufferLength=%u !\n", lpMidiHdr->dwBufferLength);
975 TRACE(" %02X %02X %02X ... %02X %02X %02X\n",
976 lpData[0], lpData[1], lpData[2], lpData[lpMidiHdr->dwBufferLength-3],
977 lpData[lpMidiHdr->dwBufferLength-2], lpData[lpMidiHdr->dwBufferLength-1]);
979 switch (MidiOutDev[wDevID].caps.wTechnology) {
981 /* FIXME: I don't think there is much to do here */
982 HeapFree(GetProcessHeap(), 0, lpNewData);
985 if (lpData[0] != 0xF0) {
986 /* Send start of System Exclusive */
989 memcpy(lpNewData + 1, lpData, lpMidiHdr->dwBufferLength);
990 WARN("Adding missing 0xF0 marker at the beginning of system exclusive byte stream\n");
992 if (lpData[lpMidiHdr->dwBufferLength-1] != 0xF7) {
993 /* Send end of System Exclusive */
995 memcpy(lpNewData, lpData, lpMidiHdr->dwBufferLength);
996 lpNewData[lpMidiHdr->dwBufferLength + len_add] = 0xF7;
998 WARN("Adding missing 0xF7 marker at the end of system exclusive byte stream\n");
1000 snd_seq_ev_clear(&event);
1001 snd_seq_ev_set_direct(&event);
1002 snd_seq_ev_set_source(&event, port_out);
1003 snd_seq_ev_set_dest(&event, MidiOutDev[wDevID].addr.client, MidiOutDev[wDevID].addr.port);
1004 TRACE("client = %d port = %d\n", MidiOutDev[wDevID].addr.client, MidiOutDev[wDevID].addr.port);
1005 snd_seq_ev_set_sysex(&event, lpMidiHdr->dwBufferLength + len_add, lpNewData ? lpNewData : lpData);
1006 snd_seq_event_output_direct(midiSeq, &event);
1007 HeapFree(GetProcessHeap(), 0, lpNewData);
1010 WARN("Technology not supported (yet) %d !\n",
1011 MidiOutDev[wDevID].caps.wTechnology);
1012 HeapFree(GetProcessHeap(), 0, lpNewData);
1013 return MMSYSERR_NOTENABLED;
1016 lpMidiHdr->dwFlags &= ~MHDR_INQUEUE;
1017 lpMidiHdr->dwFlags |= MHDR_DONE;
1018 MIDI_NotifyClient(wDevID, MOM_DONE, (DWORD_PTR)lpMidiHdr, 0L);
1019 return MMSYSERR_NOERROR;
1022 /**************************************************************************
1023 * modPrepare [internal]
1025 static DWORD modPrepare(WORD wDevID, LPMIDIHDR lpMidiHdr, DWORD dwSize)
1027 TRACE("(%04X, %p, %08X);\n", wDevID, lpMidiHdr, dwSize);
1029 if (midiSeq == NULL) {
1030 WARN("can't prepare !\n");
1031 return MMSYSERR_NOTENABLED;
1034 /* MS doc says that dwFlags must be set to zero, but (kinda funny) MS mciseq drivers
1035 * asks to prepare MIDIHDR which dwFlags != 0.
1036 * So at least check for the inqueue flag
1038 if (dwSize < offsetof(MIDIHDR,dwOffset) || lpMidiHdr == 0 ||
1039 lpMidiHdr->lpData == 0 || (lpMidiHdr->dwFlags & MHDR_INQUEUE) != 0) {
1040 WARN("%p %p %08x %d\n", lpMidiHdr, lpMidiHdr ? lpMidiHdr->lpData : NULL,
1041 lpMidiHdr ? lpMidiHdr->dwFlags : 0, dwSize);
1042 return MMSYSERR_INVALPARAM;
1045 lpMidiHdr->lpNext = 0;
1046 lpMidiHdr->dwFlags |= MHDR_PREPARED;
1047 lpMidiHdr->dwFlags &= ~MHDR_DONE;
1048 return MMSYSERR_NOERROR;
1051 /**************************************************************************
1052 * modUnprepare [internal]
1054 static DWORD modUnprepare(WORD wDevID, LPMIDIHDR lpMidiHdr, DWORD dwSize)
1056 TRACE("(%04X, %p, %08X);\n", wDevID, lpMidiHdr, dwSize);
1058 if (midiSeq == NULL) {
1059 WARN("can't unprepare !\n");
1060 return MMSYSERR_NOTENABLED;
1063 if (dwSize < offsetof(MIDIHDR,dwOffset) || lpMidiHdr == 0)
1064 return MMSYSERR_INVALPARAM;
1065 if (lpMidiHdr->dwFlags & MHDR_INQUEUE)
1066 return MIDIERR_STILLPLAYING;
1067 lpMidiHdr->dwFlags &= ~MHDR_PREPARED;
1068 return MMSYSERR_NOERROR;
1071 /**************************************************************************
1072 * modGetVolume [internal]
1074 static DWORD modGetVolume(WORD wDevID, DWORD* lpdwVolume)
1076 if (!lpdwVolume) return MMSYSERR_INVALPARAM;
1077 if (wDevID >= MODM_NumDevs) return MMSYSERR_BADDEVICEID;
1078 *lpdwVolume = 0xFFFFFFFF;
1079 return (MidiOutDev[wDevID].caps.dwSupport & MIDICAPS_VOLUME) ? 0 : MMSYSERR_NOTSUPPORTED;
1082 /**************************************************************************
1083 * modReset [internal]
1085 static DWORD modReset(WORD wDevID)
1089 TRACE("(%04X);\n", wDevID);
1091 if (wDevID >= MODM_NumDevs) return MMSYSERR_BADDEVICEID;
1092 if (!MidiOutDev[wDevID].bEnabled) return MIDIERR_NODEVICE;
1094 /* stop all notes */
1095 /* FIXME: check if 0x78B0 is channel dependent or not. I coded it so that
1096 * it's channel dependent...
1098 for (chn = 0; chn < 16; chn++) {
1099 /* turn off every note */
1100 modData(wDevID, 0x7800 | MIDI_CMD_CONTROL | chn);
1101 /* remove sustain on all channels */
1102 modData(wDevID, (MIDI_CTL_SUSTAIN << 8) | MIDI_CMD_CONTROL | chn);
1104 /* FIXME: the LongData buffers must also be returned to the app */
1105 return MMSYSERR_NOERROR;
1109 /**************************************************************************
1110 * ALSA_AddMidiPort [internal]
1112 * Helper for ALSA_MidiInit
1114 static void ALSA_AddMidiPort(snd_seq_client_info_t* cinfo, snd_seq_port_info_t* pinfo, unsigned int cap, unsigned int type)
1116 char midiPortName[MAXPNAMELEN];
1118 if (cap & SND_SEQ_PORT_CAP_WRITE) {
1119 TRACE("OUT (%d:%s:%s:%d:%s:%x)\n",snd_seq_client_info_get_client(cinfo),
1120 snd_seq_client_info_get_name(cinfo),
1121 snd_seq_client_info_get_type(cinfo) == SND_SEQ_USER_CLIENT ? "user" : "kernel",
1122 snd_seq_port_info_get_port(pinfo),
1123 snd_seq_port_info_get_name(pinfo),
1126 if (MODM_NumDevs >= MAX_MIDIOUTDRV)
1131 MidiOutDev[MODM_NumDevs].addr = *snd_seq_port_info_get_addr(pinfo);
1133 /* Manufac ID. We do not have access to this with soundcard.h
1134 * Does not seem to be a problem, because in mmsystem.h only
1135 * Microsoft's ID is listed.
1137 MidiOutDev[MODM_NumDevs].caps.wMid = 0x00FF;
1138 MidiOutDev[MODM_NumDevs].caps.wPid = 0x0001; /* FIXME Product ID */
1139 /* Product Version. We simply say "1" */
1140 MidiOutDev[MODM_NumDevs].caps.vDriverVersion = 0x001;
1141 /* The following are mandatory for MOD_MIDIPORT */
1142 MidiOutDev[MODM_NumDevs].caps.wChannelMask = 0xFFFF;
1143 MidiOutDev[MODM_NumDevs].caps.wVoices = 0;
1144 MidiOutDev[MODM_NumDevs].caps.wNotes = 0;
1145 MidiOutDev[MODM_NumDevs].caps.dwSupport = 0;
1147 /* Try to use both client and port names, if this is too long take the port name only.
1148 In the second case the port name should be explicit enough due to its big size.
1150 if ( (strlen(snd_seq_client_info_get_name(cinfo)) + strlen(snd_seq_port_info_get_name(pinfo)) + 3) < MAXPNAMELEN ) {
1151 sprintf(midiPortName, "%s - %s", snd_seq_client_info_get_name(cinfo), snd_seq_port_info_get_name(pinfo));
1153 lstrcpynA(midiPortName, snd_seq_port_info_get_name(pinfo), MAXPNAMELEN);
1155 MultiByteToWideChar(CP_UNIXCP, 0, midiPortName, -1,
1156 MidiOutDev[MODM_NumDevs].caps.szPname,
1157 sizeof(MidiOutDev[MODM_NumDevs].caps.szPname) / sizeof(WCHAR));
1159 MidiOutDev[MODM_NumDevs].caps.wTechnology = MIDI_AlsaToWindowsDeviceType(type);
1161 if (MOD_MIDIPORT != MidiOutDev[MODM_NumDevs].caps.wTechnology) {
1162 /* FIXME Do we have this information?
1163 * Assuming the soundcards can handle
1164 * MIDICAPS_VOLUME and MIDICAPS_LRVOLUME but
1165 * not MIDICAPS_CACHE.
1167 MidiOutDev[MODM_NumDevs].caps.dwSupport = MIDICAPS_VOLUME|MIDICAPS_LRVOLUME;
1168 MidiOutDev[MODM_NumDevs].caps.wVoices = 16;
1170 /* FIXME Is it possible to know the maximum
1171 * number of simultaneous notes of a soundcard ?
1172 * I believe we don't have this information, but
1173 * it's probably equal or more than wVoices
1175 MidiOutDev[MODM_NumDevs].caps.wNotes = 16;
1177 MidiOutDev[MODM_NumDevs].bEnabled = TRUE;
1179 TRACE("MidiOut[%d]\tname='%s' techn=%d voices=%d notes=%d chnMsk=%04x support=%d\n"
1180 "\tALSA info: midi dev-type=%x, capa=0\n",
1181 MODM_NumDevs, wine_dbgstr_w(MidiOutDev[MODM_NumDevs].caps.szPname),
1182 MidiOutDev[MODM_NumDevs].caps.wTechnology,
1183 MidiOutDev[MODM_NumDevs].caps.wVoices, MidiOutDev[MODM_NumDevs].caps.wNotes,
1184 MidiOutDev[MODM_NumDevs].caps.wChannelMask, MidiOutDev[MODM_NumDevs].caps.dwSupport,
1189 if (cap & SND_SEQ_PORT_CAP_READ) {
1190 TRACE("IN (%d:%s:%s:%d:%s:%x)\n",snd_seq_client_info_get_client(cinfo),
1191 snd_seq_client_info_get_name(cinfo),
1192 snd_seq_client_info_get_type(cinfo) == SND_SEQ_USER_CLIENT ? "user" : "kernel",
1193 snd_seq_port_info_get_port(pinfo),
1194 snd_seq_port_info_get_name(pinfo),
1197 if (MIDM_NumDevs >= MAX_MIDIINDRV)
1202 MidiInDev[MIDM_NumDevs].addr = *snd_seq_port_info_get_addr(pinfo);
1204 /* Manufac ID. We do not have access to this with soundcard.h
1205 * Does not seem to be a problem, because in mmsystem.h only
1206 * Microsoft's ID is listed.
1208 MidiInDev[MIDM_NumDevs].caps.wMid = 0x00FF;
1209 MidiInDev[MIDM_NumDevs].caps.wPid = 0x0001; /* FIXME Product ID */
1210 /* Product Version. We simply say "1" */
1211 MidiInDev[MIDM_NumDevs].caps.vDriverVersion = 0x001;
1212 MidiInDev[MIDM_NumDevs].caps.dwSupport = 0; /* mandatory with MIDIINCAPS */
1214 /* Try to use both client and port names, if this is too long take the port name only.
1215 In the second case the port name should be explicit enough due to its big size.
1217 if ( (strlen(snd_seq_client_info_get_name(cinfo)) + strlen(snd_seq_port_info_get_name(pinfo)) + 3) < MAXPNAMELEN ) {
1218 sprintf(midiPortName, "%s - %s", snd_seq_client_info_get_name(cinfo), snd_seq_port_info_get_name(pinfo));
1220 lstrcpynA(midiPortName, snd_seq_port_info_get_name(pinfo), MAXPNAMELEN);
1222 MultiByteToWideChar(CP_UNIXCP, 0, midiPortName, -1,
1223 MidiInDev[MIDM_NumDevs].caps.szPname,
1224 sizeof(MidiInDev[MIDM_NumDevs].caps.szPname) / sizeof(WCHAR));
1225 MidiInDev[MIDM_NumDevs].state = 0;
1227 TRACE("MidiIn [%d]\tname='%s' support=%d\n"
1228 "\tALSA info: midi dev-type=%x, capa=0\n",
1229 MIDM_NumDevs, wine_dbgstr_w(MidiInDev[MIDM_NumDevs].caps.szPname),
1230 MidiInDev[MIDM_NumDevs].caps.dwSupport,
1238 /*======================================================================*
1239 * MIDI entry points *
1240 *======================================================================*/
1242 /**************************************************************************
1243 * ALSA_MidiInit [internal]
1245 * Initializes the MIDI devices information variables
1247 static LONG ALSA_MidiInit(void)
1249 static BOOL bInitDone = FALSE;
1250 snd_seq_client_info_t *cinfo;
1251 snd_seq_port_info_t *pinfo;
1256 TRACE("Initializing the MIDI variables.\n");
1259 /* try to open device */
1260 if (midiOpenSeq(0) == -1) {
1264 #if 0 /* Debug purpose */
1265 snd_lib_error_set_handler(error_handler);
1267 cinfo = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, snd_seq_client_info_sizeof() );
1268 pinfo = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, snd_seq_port_info_sizeof() );
1270 /* First, search for all internal midi devices */
1271 snd_seq_client_info_set_client(cinfo, -1);
1272 while(snd_seq_query_next_client(midiSeq, cinfo) >= 0) {
1273 snd_seq_port_info_set_client(pinfo, snd_seq_client_info_get_client(cinfo));
1274 snd_seq_port_info_set_port(pinfo, -1);
1275 while (snd_seq_query_next_port(midiSeq, pinfo) >= 0) {
1276 unsigned int cap = snd_seq_port_info_get_capability(pinfo);
1277 unsigned int type = snd_seq_port_info_get_type(pinfo);
1278 if (!(type & SND_SEQ_PORT_TYPE_PORT))
1279 ALSA_AddMidiPort(cinfo, pinfo, cap, type);
1283 /* Second, search for all external ports */
1284 snd_seq_client_info_set_client(cinfo, -1);
1285 while(snd_seq_query_next_client(midiSeq, cinfo) >= 0) {
1286 snd_seq_port_info_set_client(pinfo, snd_seq_client_info_get_client(cinfo));
1287 snd_seq_port_info_set_port(pinfo, -1);
1288 while (snd_seq_query_next_port(midiSeq, pinfo) >= 0) {
1289 unsigned int cap = snd_seq_port_info_get_capability(pinfo);
1290 unsigned int type = snd_seq_port_info_get_type(pinfo);
1291 if (type & SND_SEQ_PORT_TYPE_PORT)
1292 ALSA_AddMidiPort(cinfo, pinfo, cap, type);
1296 /* close file and exit */
1298 HeapFree( GetProcessHeap(), 0, cinfo );
1299 HeapFree( GetProcessHeap(), 0, pinfo );
1305 /**************************************************************************
1306 * midMessage (WINEALSA.@)
1308 DWORD WINAPI ALSA_midMessage(UINT wDevID, UINT wMsg, DWORD_PTR dwUser,
1309 DWORD_PTR dwParam1, DWORD_PTR dwParam2)
1311 TRACE("(%04X, %04X, %08lX, %08lX, %08lX);\n",
1312 wDevID, wMsg, dwUser, dwParam1, dwParam2);
1320 /* FIXME: Pretend this is supported */
1323 return midOpen(wDevID, (LPMIDIOPENDESC)dwParam1, dwParam2);
1325 return midClose(wDevID);
1326 case MIDM_ADDBUFFER:
1327 return midAddBuffer(wDevID, (LPMIDIHDR)dwParam1, dwParam2);
1329 return midPrepare(wDevID, (LPMIDIHDR)dwParam1, dwParam2);
1330 case MIDM_UNPREPARE:
1331 return midUnprepare(wDevID, (LPMIDIHDR)dwParam1, dwParam2);
1332 case MIDM_GETDEVCAPS:
1333 return midGetDevCaps(wDevID, (LPMIDIINCAPSW)dwParam1,dwParam2);
1334 case MIDM_GETNUMDEVS:
1335 return MIDM_NumDevs;
1337 return midReset(wDevID);
1339 return midStart(wDevID);
1341 return midStop(wDevID);
1343 TRACE("Unsupported message\n");
1345 return MMSYSERR_NOTSUPPORTED;
1348 /**************************************************************************
1349 * modMessage (WINEALSA.@)
1351 DWORD WINAPI ALSA_modMessage(UINT wDevID, UINT wMsg, DWORD_PTR dwUser,
1352 DWORD_PTR dwParam1, DWORD_PTR dwParam2)
1354 TRACE("(%04X, %04X, %08lX, %08lX, %08lX);\n",
1355 wDevID, wMsg, dwUser, dwParam1, dwParam2);
1364 /* FIXME: Pretend this is supported */
1367 return modOpen(wDevID, (LPMIDIOPENDESC)dwParam1, dwParam2);
1369 return modClose(wDevID);
1371 return modData(wDevID, dwParam1);
1373 return modLongData(wDevID, (LPMIDIHDR)dwParam1, dwParam2);
1375 return modPrepare(wDevID, (LPMIDIHDR)dwParam1, dwParam2);
1376 case MODM_UNPREPARE:
1377 return modUnprepare(wDevID, (LPMIDIHDR)dwParam1, dwParam2);
1378 case MODM_GETDEVCAPS:
1379 return modGetDevCaps(wDevID, (LPMIDIOUTCAPSW)dwParam1, dwParam2);
1380 case MODM_GETNUMDEVS:
1381 return MODM_NumDevs;
1382 case MODM_GETVOLUME:
1383 return modGetVolume(wDevID, (DWORD*)dwParam1);
1384 case MODM_SETVOLUME:
1387 return modReset(wDevID);
1389 TRACE("Unsupported message\n");
1391 return MMSYSERR_NOTSUPPORTED;
1394 /**************************************************************************
1395 * DriverProc (WINEALSA.@)
1397 LRESULT CALLBACK ALSA_DriverProc(DWORD_PTR dwDevID, HDRVR hDriv, UINT wMsg,
1398 LPARAM dwParam1, LPARAM dwParam2)
1400 /* EPP TRACE("(%08lX, %04X, %08lX, %08lX, %08lX)\n", */
1401 /* EPP dwDevID, hDriv, wMsg, dwParam1, dwParam2); */
1410 case DRV_QUERYCONFIGURE: