winmm/tests: Fix a pointer conversion warning on 64-bit.
[wine/multimedia.git] / dlls / winmm / tests / midi.c
blob4ceec33b854f19e787d3c983f14b3264027696e9
1 /*
2 * Test winmm midi
4 * Copyright 2010 Jörg Höhle
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdio.h>
22 #include <stddef.h>
23 #include "windows.h"
24 #include "mmsystem.h"
25 #include "wine/test.h"
27 extern const char* mmsys_error(MMRESULT error); /* from wave.c */
29 /* Test in order of increasing probability to hang.
30 * On many UNIX systems, the Timidity softsynth provides
31 * MIDI sequencer services and it is not particularly robust.
34 #define MYCBINST 0x4CAFE5A8 /* not used with window or thread callbacks */
35 #define WHATEVER 0xFEEDF00D
37 static BOOL spurious_message(LPMSG msg)
39 /* WM_DEVICECHANGE 0x0219 appears randomly */
40 if(msg->message == WM_DEVICECHANGE) {
41 trace("skipping spurious message %04x\n", msg->message);
42 return TRUE;
44 return FALSE;
47 static UINT cbmsg = 0;
48 static DWORD_PTR cbval1 = WHATEVER;
49 static DWORD_PTR cbval2 = 0;
50 static DWORD_PTR cbinst = MYCBINST;
52 static void CALLBACK callback_func(HWAVEOUT hwo, UINT uMsg,
53 DWORD_PTR dwInstance,
54 DWORD_PTR dwParam1, DWORD_PTR dwParam2)
56 if (winetest_debug>1)
57 trace("Callback! msg=%x %lx %lx\n", uMsg, dwParam1, dwParam2);
58 cbmsg = uMsg;
59 cbval1 = dwParam1; /* mhdr or 0 */
60 cbval2 = dwParam2; /* always 0 */
61 cbinst = dwInstance; /* MYCBINST, see midiOut/StreamOpen */
64 #define test_notification(hwnd, command, m1, p2) test_notification_dbg(hwnd, command, m1, p2, __LINE__)
65 static void test_notification_dbg(HWND hwnd, const char* command, UINT m1, DWORD_PTR p2, int line)
66 { /* Use message type 0 as meaning no message */
67 MSG msg;
68 if (hwnd) {
69 /* msg.wParam is hmidiout, msg.lParam is the mhdr (or 0) */
70 BOOL seen;
71 do { seen = PeekMessageA(&msg, hwnd, 0, 0, PM_REMOVE); }
72 while(seen && spurious_message(&msg));
73 if (m1 && !seen) {
74 /* We observe transient delayed notification, mostly on native.
75 * Perhaps the OS preempts the player thread after setting MHDR_DONE
76 * or clearing MHDR_INQUEUE, before calling DriverCallback. */
77 DWORD rc;
78 trace_(__FILE__,line)("Waiting for delayed message %x from %s\n", m1, command);
79 SetLastError(0xDEADBEEF);
80 rc = MsgWaitForMultipleObjects(0, NULL, FALSE, 3000, QS_POSTMESSAGE);
81 ok_(__FILE__,line)(rc==WAIT_OBJECT_0, "Wait failed: %04x %d\n", rc, GetLastError());
82 seen = PeekMessageA(&msg, hwnd, 0, 0, PM_REMOVE);
84 if (seen) {
85 trace_(__FILE__,line)("Message %x, wParam=%lx, lParam=%lx from %s\n",
86 msg.message, msg.wParam, msg.lParam, command);
87 ok_(__FILE__,line)(msg.hwnd==hwnd, "Didn't get the handle to our test window\n");
88 ok_(__FILE__,line)(msg.message==m1 && msg.lParam==p2, "bad message %x/%lx from %s, expect %x/%lx\n", msg.message, msg.lParam, command, m1, p2);
90 else ok_(__FILE__,line)(m1==0, "Expect message %x from %s\n", m1, command);
92 else {
93 /* FIXME: MOM_POSITIONCB and MOM_DONE are so close that a queue is needed. */
94 if (cbmsg) {
95 ok_(__FILE__,line)(cbmsg==m1 && cbval1==p2 && cbval2==0, "bad callback %x/%lx/%lx from %s, expect %x/%lx\n", cbmsg, cbval1, cbval2, command, m1, p2);
96 cbmsg = 0; /* Mark as read */
97 cbval1 = cbval2 = WHATEVER;
98 ok_(__FILE__,line)(cbinst==MYCBINST, "callback dwInstance changed to %lx\n", cbinst);
100 else ok_(__FILE__,line)(m1==0, "Expect callback %x from %s\n", m1, command);
105 static void test_midiIn_device(UINT udev, HWND hwnd)
107 HMIDIIN hm;
108 MMRESULT rc;
109 MIDIINCAPSA capsA;
110 MIDIHDR mhdr;
112 rc = midiInGetDevCapsA(udev, &capsA, sizeof(capsA));
113 ok((MIDIMAPPER==udev) ? (rc==MMSYSERR_BADDEVICEID || broken(rc==MMSYSERR_NODRIVER /*nt,w2k*/)) : rc==0,
114 "midiInGetDevCaps(dev=%d) rc=%s\n", udev, mmsys_error(rc));
115 if (!rc) {
116 /* MIDI IN capsA.dwSupport may contain garbage, absent in old MS-Windows */
117 trace("* %s: manufacturer=%d, product=%d, support=%X\n", capsA.szPname, capsA.wMid, capsA.wPid, capsA.dwSupport);
120 if (hwnd)
121 rc = midiInOpen(&hm, udev, (DWORD_PTR)hwnd, (DWORD_PTR)MYCBINST, CALLBACK_WINDOW);
122 else
123 rc = midiInOpen(&hm, udev, (DWORD_PTR)callback_func, (DWORD_PTR)MYCBINST, CALLBACK_FUNCTION);
124 ok((MIDIMAPPER!=udev) ? rc==0 : (rc==MMSYSERR_BADDEVICEID || broken(rc==MMSYSERR_NODRIVER /*nt,w2k*/)),
125 "midiInOpen(dev=%d) rc=%s\n", udev, mmsys_error(rc));
126 if (rc) return;
128 test_notification(hwnd, "midiInOpen", MIM_OPEN, 0);
130 mhdr.dwFlags = 0;
131 mhdr.dwUser = 0x56FA552C;
132 mhdr.dwBufferLength = 70000; /* > 64KB! */
133 mhdr.lpData = HeapAlloc(GetProcessHeap(), 0 , mhdr.dwBufferLength);
134 ok(mhdr.lpData!=NULL, "No %d bytes of memory!\n", mhdr.dwBufferLength);
135 if (mhdr.lpData) {
136 rc = midiInPrepareHeader(hm, &mhdr, offsetof(MIDIHDR,dwOffset)-1);
137 ok(rc==MMSYSERR_INVALPARAM, "midiInPrepare tiny rc=%s\n", mmsys_error(rc));
138 rc = midiInPrepareHeader(hm, &mhdr, offsetof(MIDIHDR,dwOffset));
139 ok(!rc, "midiInPrepare old size rc=%s\n", mmsys_error(rc));
140 rc = midiInPrepareHeader(hm, &mhdr, sizeof(mhdr));
141 ok(!rc, "midiInPrepare rc=%s\n", mmsys_error(rc));
142 rc = midiInUnprepareHeader(hm, &mhdr, sizeof(mhdr));
143 ok(!rc, "midiInUnprepare rc=%s\n", mmsys_error(rc));
144 trace("MIDIHDR flags=%x when unsent\n", mhdr.dwFlags);
146 HeapFree(GetProcessHeap(), 0, mhdr.lpData);
148 ok(mhdr.dwUser==0x56FA552C, "MIDIHDR.dwUser changed to %lx\n", mhdr.dwUser);
150 rc = midiInReset(hm); /* Return any pending buffer */
151 ok(!rc, "midiInReset rc=%s\n", mmsys_error(rc));
153 rc = midiInClose(hm);
154 ok(!rc, "midiInClose rc=%s\n", mmsys_error(rc));
155 test_notification(hwnd, "midiInClose", MIM_CLOSE, 0);
156 test_notification(hwnd, "midiIn over", 0, WHATEVER);
159 static void test_midi_infns(HWND hwnd)
161 HMIDIIN hm;
162 MMRESULT rc;
163 UINT udev, ndevs = midiInGetNumDevs();
165 rc = midiInOpen(&hm, ndevs, 0, 0, CALLBACK_NULL);
166 ok(rc==MMSYSERR_BADDEVICEID, "midiInOpen udev>max rc=%s\n", mmsys_error(rc));
167 if (!rc) {
168 rc = midiInClose(hm);
169 ok(!rc, "midiInClose rc=%s\n", mmsys_error(rc));
171 if (!ndevs) {
172 trace("Found no MIDI IN device\n"); /* no skip for this common situation */
173 rc = midiInOpen(&hm, MIDIMAPPER, 0, 0, CALLBACK_NULL);
174 ok(rc==MMSYSERR_BADDEVICEID || broken(rc==MMSYSERR_NODRIVER /*nt,w2k*/), "midiInOpen MAPPER with no MIDI rc=%s\n", mmsys_error(rc));
175 if (!rc) {
176 rc = midiInClose(hm);
177 ok(!rc, "midiInClose rc=%s\n", mmsys_error(rc));
179 return;
181 trace("Found %d MIDI IN devices\n", ndevs);
182 for (udev=0; udev < ndevs; udev++) {
183 trace("** Testing device %d\n", udev);
184 test_midiIn_device(udev, hwnd);
185 Sleep(50);
187 trace("** Testing MIDI mapper\n");
188 test_midiIn_device(MIDIMAPPER, hwnd);
192 static void test_midi_mci(HWND hwnd)
194 MCIERROR err;
195 char buf[1024];
196 memset(buf, 0, sizeof(buf));
198 err = mciSendString("sysinfo sequencer quantity", buf, sizeof(buf), hwnd);
199 ok(!err, "mci sysinfo sequencer quantity returned %d\n", err);
200 if (!err) trace("Found %s MCI sequencer devices\n", buf);
204 static void test_midiOut_device(UINT udev, HWND hwnd)
206 HMIDIOUT hm;
207 MMRESULT rc;
208 MIDIOUTCAPSA capsA;
209 DWORD ovolume;
210 MIDIHDR mhdr;
212 rc = midiOutGetDevCapsA(udev, &capsA, sizeof(capsA));
213 ok(!rc, "midiOutGetDevCaps(dev=%d) rc=%s\n", udev, mmsys_error(rc));
214 if (!rc) {
215 trace("* %s: manufacturer=%d, product=%d, tech=%d, support=%X: %d voices, %d notes\n",
216 capsA.szPname, capsA.wMid, capsA.wPid, capsA.wTechnology, capsA.dwSupport, capsA.wVoices, capsA.wNotes);
219 if (hwnd)
220 rc = midiOutOpen(&hm, udev, (DWORD_PTR)hwnd, (DWORD_PTR)MYCBINST, CALLBACK_WINDOW);
221 else
222 rc = midiOutOpen(&hm, udev, (DWORD_PTR)callback_func, (DWORD_PTR)MYCBINST, CALLBACK_FUNCTION);
223 ok(!rc, "midiOutOpen(dev=%d) rc=%s\n", udev, mmsys_error(rc));
224 if (rc) return;
226 test_notification(hwnd, "midiOutOpen", MOM_OPEN, 0);
228 rc = midiOutGetVolume(hm, &ovolume);
229 ok((capsA.dwSupport & MIDICAPS_VOLUME) ? rc==MMSYSERR_NOERROR : rc==MMSYSERR_NOTSUPPORTED, "midiOutGetVolume rc=%s\n", mmsys_error(rc));
230 /* The native mapper responds with FFFFFFFF initially,
231 * real devices with the volume GUI SW-synth settings. */
232 if (!rc) trace("Current volume %x on device %d\n", ovolume, udev);
234 /* The W95 ESFM Synthesis device reports NOTENABLED although
235 * GetVolume by handle works and music plays. */
236 rc = midiOutGetVolume(UlongToHandle(udev), &ovolume);
237 ok((capsA.dwSupport & MIDICAPS_VOLUME) ? rc==MMSYSERR_NOERROR || broken(rc==MMSYSERR_NOTENABLED) : rc==MMSYSERR_NOTSUPPORTED, "midiOutGetVolume(dev=%d) rc=%s\n", udev, mmsys_error(rc));
239 /* Tests with midiOutSetvolume show that the midi mapper forwards
240 * the value to the real device, but Get initially always reports
241 * FFFFFFFF. Therefore, a Get+SetVolume pair with the mapper is
242 * not adequate to restore the value prior to tests.
244 if (winetest_interactive && (capsA.dwSupport & MIDICAPS_VOLUME)) {
245 DWORD volume2 = (ovolume < 0x80000000) ? 0xC000C000 : 0x40004000;
246 rc = midiOutSetVolume(hm, volume2);
247 ok(!rc, "midiOutSetVolume rc=%s\n", mmsys_error(rc));
248 if (!rc) {
249 DWORD volume3;
250 rc = midiOutGetVolume(hm, &volume3);
251 ok(!rc, "midiOutGetVolume new rc=%s\n", mmsys_error(rc));
252 if (!rc) trace("New volume %x on device %d\n", volume3, udev);
253 todo_wine ok(volume2==volume3, "volume Set %x = Get %x\n", volume2, volume3);
255 rc = midiOutSetVolume(hm, ovolume);
256 ok(!rc, "midiOutSetVolume restore rc=%s\n", mmsys_error(rc));
259 rc = midiOutGetDevCapsA((UINT_PTR)hm, &capsA, sizeof(capsA));
260 ok(!rc, "midiOutGetDevCaps(dev=%d) by handle rc=%s\n", udev, mmsys_error(rc));
261 rc = midiInGetDevCapsA((UINT_PTR)hm, (LPMIDIINCAPSA)&capsA, sizeof(DWORD));
262 ok(rc==MMSYSERR_BADDEVICEID, "midiInGetDevCaps(dev=%d) by out handle rc=%s\n", udev, mmsys_error(rc));
264 { DWORD e = 0x006F4893; /* velocity, note (#69 would be 440Hz) channel */
265 trace("ShortMsg type %x\n", LOBYTE(LOWORD(e)));
266 rc = midiOutShortMsg(hm, e);
267 ok(!rc, "midiOutShortMsg rc=%s\n", mmsys_error(rc));
268 if (!rc) Sleep(400); /* Hear note */
271 mhdr.dwFlags = 0;
272 mhdr.dwUser = 0x56FA552C;
273 mhdr.dwOffset = 0xDEADBEEF;
274 mhdr.dwBufferLength = 70000; /* > 64KB! */
275 mhdr.lpData = HeapAlloc(GetProcessHeap(), 0 , mhdr.dwBufferLength);
276 ok(mhdr.lpData!=NULL, "No %d bytes of memory!\n", mhdr.dwBufferLength);
277 if (mhdr.lpData) {
278 rc = midiOutLongMsg(hm, &mhdr, sizeof(mhdr));
279 ok(rc==MIDIERR_UNPREPARED, "midiOutLongMsg unprepared rc=%s\n", mmsys_error(rc));
280 test_notification(hwnd, "midiOutLong unprepared", 0, WHATEVER);
282 rc = midiOutPrepareHeader(hm, &mhdr, offsetof(MIDIHDR,dwOffset)-1);
283 ok(rc==MMSYSERR_INVALPARAM, "midiOutPrepare tiny rc=%s\n", mmsys_error(rc));
284 rc = midiOutPrepareHeader(hm, &mhdr, offsetof(MIDIHDR,dwOffset));
285 ok(!rc, "midiOutPrepare old size rc=%s\n", mmsys_error(rc));
286 rc = midiOutPrepareHeader(hm, &mhdr, sizeof(mhdr));
287 ok(!rc, "midiOutPrepare rc=%s\n", mmsys_error(rc));
288 rc = midiOutUnprepareHeader(hm, &mhdr, sizeof(mhdr));
289 ok(!rc, "midiOutUnprepare rc=%s\n", mmsys_error(rc));
290 trace("MIDIHDR flags=%x when unsent\n", mhdr.dwFlags);
292 HeapFree(GetProcessHeap(), 0, mhdr.lpData);
294 ok(mhdr.dwUser==0x56FA552C, "MIDIHDR.dwUser changed to %lx\n", mhdr.dwUser);
295 ok(mhdr.dwOffset==0xDEADBEEF, "MIDIHDR.dwOffset changed to %x\n", mhdr.dwOffset);
297 rc = midiOutReset(hm); /* Quiet everything */
298 ok(!rc, "midiOutReset rc=%s\n", mmsys_error(rc));
300 rc = midiOutClose(hm);
301 ok(!rc, "midiOutClose rc=%s\n", mmsys_error(rc));
302 test_notification(hwnd, "midiOutClose", MOM_CLOSE, 0);
303 test_notification(hwnd, "midiOut over", 0, WHATEVER);
306 static void test_position(HMIDISTRM hm, UINT typein, UINT typeout)
308 MMRESULT rc;
309 MMTIME mmtime;
310 mmtime.wType = typein;
311 rc = midiStreamPosition(hm, &mmtime, sizeof(MMTIME));
312 /* Ugly, but a single ok() herein enables using the todo_wine prefix */
313 ok(!rc && (mmtime.wType == typeout), "midiStreamPosition type %x converted to %x rc=%s\n", typein, mmtime.wType, mmsys_error(rc));
314 if (!rc) switch(mmtime.wType) {
315 case TIME_MS:
316 trace("Stream position %ums\n", mmtime.u.ms);
317 break;
318 case TIME_TICKS:
319 trace("Stream position %u ticks\n", mmtime.u.ticks);
320 break;
321 case TIME_MIDI:
322 trace("Stream position song pointer %u\n", mmtime.u.midi.songptrpos);
323 break;
327 /* Native crashes on a second run with the const qualifier set on this data! */
328 static BYTE strmEvents[] = { /* A set of variable-sized MIDIEVENT structs */
329 0, 0, 0, 0, 0, 0, 0, 0, /* dwDeltaTime and dwStreamID */
330 0, 0, 0, MEVT_NOP | 0x40, /* with MEVT_F_CALLBACK */
331 0, 0, 0, 0, 0, 0, 0, 0, /* dwDeltaTime and dwStreamID */
332 0x93, 0x48, 0x6F, MEVT_SHORTMSG,
335 static BYTE strmNops[] = { /* Test callback + dwOffset */
336 0, 0, 0, 0, 0, 0, 0, 0,
337 0, 0, 0, MEVT_NOP | 0x40, /* with MEVT_F_CALLBACK */
338 0, 0, 0, 0, 0, 0, 0, 0,
339 0, 0, 0, MEVT_NOP | 0x40, /* with MEVT_F_CALLBACK */
342 static MMRESULT playStream(HMIDISTRM hm, LPMIDIHDR lpMidiHdr)
344 MMRESULT rc = midiStreamOut(hm, lpMidiHdr, sizeof(MIDIHDR));
345 /* virtual machines may return MIDIERR_STILLPLAYING from the next request
346 * even after MHDR_DONE is set. It's still too early, so add MHDR_INQUEUE. */
347 if (!rc) while (!(lpMidiHdr->dwFlags & MHDR_DONE) || (lpMidiHdr->dwFlags & MHDR_INQUEUE)) { Sleep(100); }
348 return rc;
351 static void test_midiStream(UINT udev, HWND hwnd)
353 HMIDISTRM hm;
354 MMRESULT rc, rc2;
355 MIDIHDR mhdr;
356 union {
357 MIDIPROPTEMPO tempo;
358 MIDIPROPTIMEDIV tdiv;
359 } midiprop;
360 BYTE * const evt1 = &strmNops[1*offsetof(MIDIEVENT,dwParms)-1];
361 BYTE * const evt2 = &strmNops[2*offsetof(MIDIEVENT,dwParms)-1];
363 if (hwnd)
364 rc = midiStreamOpen(&hm, &udev, 1, (DWORD_PTR)hwnd, (DWORD_PTR)MYCBINST, CALLBACK_WINDOW);
365 else
366 rc = midiStreamOpen(&hm, &udev, 1, (DWORD_PTR)callback_func, (DWORD_PTR)MYCBINST, CALLBACK_FUNCTION);
367 ok(!rc, "midiStreamOpen(dev=%d) rc=%s\n", udev, mmsys_error(rc));
368 if (rc) return;
370 test_notification(hwnd, "midiStreamOpen", MOM_OPEN, 0);
372 midiprop.tempo.cbStruct = sizeof(midiprop.tempo);
373 rc = midiStreamProperty(hm, (void*)&midiprop, MIDIPROP_GET|MIDIPROP_TEMPO);
374 ok(!rc, "midiStreamProperty TEMPO rc=%s\n", mmsys_error(rc));
375 ok(midiprop.tempo.dwTempo==500000, "default stream tempo %u microsec per quarter note\n", midiprop.tempo.dwTempo);
377 midiprop.tdiv.cbStruct = sizeof(midiprop.tdiv);
378 rc = midiStreamProperty(hm, (void*)&midiprop, MIDIPROP_GET|MIDIPROP_TIMEDIV);
379 ok(!rc, "midiStreamProperty TIMEDIV rc=%s\n", mmsys_error(rc));
380 todo_wine ok(24==LOWORD(midiprop.tdiv.dwTimeDiv), "default stream time division %u\n", midiprop.tdiv.dwTimeDiv);
382 mhdr.dwFlags = 0;
383 mhdr.dwUser = 0x56FA552C;
384 mhdr.dwOffset = 1234567890;
385 mhdr.dwBufferLength = sizeof(strmEvents) * sizeof(strmEvents[0]);
386 mhdr.dwBytesRecorded = mhdr.dwBufferLength;
387 mhdr.lpData = (LPSTR)&strmEvents[0];
388 if (mhdr.lpData) {
389 rc = midiOutLongMsg((HMIDIOUT)hm, &mhdr, sizeof(mhdr));
390 ok(rc==MIDIERR_UNPREPARED, "midiOutLongMsg unprepared rc=%s\n", mmsys_error(rc));
391 test_notification(hwnd, "midiOutLong unprepared", 0, WHATEVER);
393 rc = midiOutPrepareHeader((HMIDIOUT)hm, &mhdr, offsetof(MIDIHDR,dwOffset)-1);
394 ok(rc==MMSYSERR_INVALPARAM, "midiOutPrepare tiny rc=%s\n", mmsys_error(rc));
395 rc = midiOutPrepareHeader((HMIDIOUT)hm, &mhdr, offsetof(MIDIHDR,dwOffset));
396 ok(!rc, "midiOutPrepare old size rc=%s\n", mmsys_error(rc));
397 ok(mhdr.dwFlags & MHDR_PREPARED, "MHDR.dwFlags when prepared %x\n", mhdr.dwFlags);
399 /* The device is still in paused mode and should queue the message. */
400 rc = midiStreamOut(hm, &mhdr, offsetof(MIDIHDR,dwOffset));
401 ok(!rc, "midiStreamOut old size rc=%s\n", mmsys_error(rc));
402 rc2 = rc;
403 trace("MIDIHDR flags=%x when submitted\n", mhdr.dwFlags);
404 /* w9X/me does not set MHDR_ISSTRM when StreamOut exits,
405 * but it will be set on all systems after the job is finished. */
407 Sleep(90);
408 /* Wine <1.1.39 started playing immediately */
409 test_notification(hwnd, "midiStream still paused", 0, WHATEVER);
411 /* MSDN asks to use midiStreamRestart prior to midiStreamOut()
412 * because the starting state is 'pause', but some apps seem to
413 * work with the inverse order.
416 rc = midiStreamRestart(hm);
417 ok(!rc, "midiStreamRestart rc=%s\n", mmsys_error(rc));
419 if (!rc2) while(mhdr.dwFlags & MHDR_INQUEUE) {
420 trace("async MIDI still queued\n");
421 Sleep(100);
422 } /* Checking INQUEUE is not the recommended way to wait for the end of a job, but we're testing. */
423 /* MHDR_ISSTRM is not necessarily set when midiStreamOut returns
424 * rather than when the queue is eventually processed. */
425 ok(mhdr.dwFlags & MHDR_ISSTRM, "MHDR.dwFlags %x no ISSTRM when out of queue\n", mhdr.dwFlags);
426 if (!rc2) while(!(mhdr.dwFlags & MHDR_DONE)) {
427 /* Never to be seen except perhaps on multicore */
428 trace("async MIDI still not done\n");
429 Sleep(100);
431 ok(mhdr.dwFlags & MHDR_DONE, "MHDR.dwFlags %x not DONE when out of queue\n", mhdr.dwFlags);
432 test_notification(hwnd, "midiStream callback", MOM_POSITIONCB, (DWORD_PTR)&mhdr);
433 test_notification(hwnd, "midiStreamOut", MOM_DONE, (DWORD_PTR)&mhdr);
435 /* Native fills dwOffset regardless of the cbMidiHdr size argument to midiStreamOut */
436 ok(1234567890!=mhdr.dwOffset, "play left MIDIHDR.dwOffset at %u\n", mhdr.dwOffset);
438 rc = midiOutUnprepareHeader((HMIDIOUT)hm, &mhdr, offsetof(MIDIHDR,dwOffset));
439 ok(!rc, "midiOutUnprepare rc=%s\n", mmsys_error(rc));
440 rc = midiOutUnprepareHeader((HMIDIOUT)hm, &mhdr, offsetof(MIDIHDR,dwOffset));
441 ok(!rc, "midiOutUnprepare #2 rc=%s\n", mmsys_error(rc));
443 trace("MIDIHDR stream flags=%x when finished\n", mhdr.dwFlags);
444 ok(mhdr.dwFlags & MHDR_DONE, "MHDR.dwFlags when done %x\n", mhdr.dwFlags);
446 test_position(hm, TIME_MS, TIME_MS);
447 test_position(hm, TIME_TICKS, TIME_TICKS);
448 todo_wine test_position(hm, TIME_MIDI, TIME_MIDI);
449 test_position(hm, TIME_SMPTE, TIME_MS);
450 test_position(hm, TIME_SAMPLES, TIME_MS);
451 test_position(hm, TIME_BYTES, TIME_MS);
453 Sleep(400); /* Hear note */
455 rc = midiStreamRestart(hm);
456 ok(!rc, "midiStreamRestart #2 rc=%s\n", mmsys_error(rc));
458 mhdr.dwFlags |= MHDR_ISSTRM; /* just in case */
459 /* Preset flags (e.g. MHDR_ISSTRM) do not disturb. */
460 rc = midiOutPrepareHeader((HMIDIOUT)hm, &mhdr, offsetof(MIDIHDR,dwOffset));
461 ok(!rc, "midiOutPrepare used flags %x rc=%s\n", mhdr.dwFlags, mmsys_error(rc));
462 rc = midiOutUnprepareHeader((HMIDIOUT)hm, &mhdr, offsetof(MIDIHDR,dwOffset));
463 ok(!rc, "midiOutUnprepare used flags %x rc=%s\n", mhdr.dwFlags, mmsys_error(rc));
465 rc = midiStreamRestart(hm);
466 ok(!rc, "midiStreamRestart #3 rc=%s\n", mmsys_error(rc));
468 ok(mhdr.dwUser==0x56FA552C, "MIDIHDR.dwUser changed to %lx\n", mhdr.dwUser);
469 trace("dwStreamID set to %x\n", ((LPMIDIEVENT)&strmEvents[0])->dwStreamID);
471 /* dwBytesRecorded controls how much is played, not dwBufferLength
472 * allowing to immediately forward packets from midiIn to midiOut */
473 mhdr.dwOffset = 1234123123;
474 mhdr.dwBufferLength = sizeof(strmNops) * sizeof(strmNops[0]);
475 mhdr.dwBytesRecorded = 0;
476 mhdr.lpData = (LPSTR)&strmNops[0];
477 *evt1 |= 0x40; /* MEVT_CALLBACK flag */
478 *evt2 |= 0x40;
480 rc = midiOutPrepareHeader((HMIDIOUT)hm, &mhdr, sizeof(mhdr));
481 ok(!rc, "midiOutPrepare rc=%s\n", mmsys_error(rc));
483 rc = playStream(hm, &mhdr);
484 ok(!rc, "midiStreamOut 0 bytes recorded rc=%s\n", mmsys_error(rc));
486 test_notification(hwnd, "midiStreamOut", MOM_DONE, (DWORD_PTR)&mhdr);
487 test_notification(hwnd, "0 bytes recorded", 0, WHATEVER);
489 /* FIXME: check dwOffset within callback
490 * instead of the unspecified value afterwards */
491 ok(1234123123==mhdr.dwOffset || broken(0==mhdr.dwOffset), "play 0 set MIDIHDR.dwOffset to %u\n", mhdr.dwOffset);
492 /* w2k and later only set dwOffset when processing MEVT_T_CALLBACK,
493 * while w9X/me/nt always sets it. Have Wine behave like w2k because the
494 * dwOffset slot does not exist in the small size MIDIHDR. */
496 mhdr.dwOffset = 1234123123;
497 mhdr.dwBytesRecorded = offsetof(MIDIEVENT,dwParms);
499 rc = playStream(hm, &mhdr);
500 ok(!rc, "midiStreamOut 1 event out of 2 rc=%s\n", mmsys_error(rc));
502 test_notification(hwnd, "1 of 2 events", MOM_POSITIONCB, (DWORD_PTR)&mhdr);
503 test_notification(hwnd, "1 of 2 events", MOM_DONE, (DWORD_PTR)&mhdr);
504 test_notification(hwnd, "1 of 2 events", 0, WHATEVER);
505 ok(0==mhdr.dwOffset, "MIDIHDR.dwOffset 1/2 changed to %u\n", mhdr.dwOffset);
506 trace("MIDIHDR.dwOffset left at %u\n", mhdr.dwOffset);
508 mhdr.dwOffset = 1234123123;
509 mhdr.dwBytesRecorded = 2*offsetof(MIDIEVENT,dwParms);
511 rc = playStream(hm, &mhdr);
512 ok(!rc, "midiStreamOut 1 event out of 2 rc=%s\n", mmsys_error(rc));
514 test_notification(hwnd, "2 of 2 events", MOM_POSITIONCB, (DWORD_PTR)&mhdr);
515 test_notification(hwnd, "2 of 2 events", MOM_POSITIONCB, (DWORD_PTR)&mhdr);
516 test_notification(hwnd, "2 of 2 events", MOM_DONE, (DWORD_PTR)&mhdr);
517 test_notification(hwnd, "2 of 2 events", 0, WHATEVER);
518 ok(3*sizeof(DWORD)==mhdr.dwOffset, "MIDIHDR.dwOffset 2/2 changed to %u\n", mhdr.dwOffset);
519 trace("MIDIHDR.dwOffset left at %u\n", mhdr.dwOffset);
521 *evt1 &= ~0x40; /* MEVT_CALLBACK flag */
522 *evt2 &= ~0x40;
523 mhdr.dwOffset = 1234123123;
524 rc = playStream(hm, &mhdr);
525 ok(!rc, "midiStreamOut 1 event out of 2 rc=%s\n", mmsys_error(rc));
527 test_notification(hwnd, "0 CB in 2 events", MOM_DONE, (DWORD_PTR)&mhdr);
528 test_notification(hwnd, "0 CB in 2 events", 0, WHATEVER);
529 /* w9X/me/nt set dwOffset to the position played last */
530 ok(1234123123==mhdr.dwOffset || broken(3*sizeof(DWORD)==mhdr.dwOffset), "MIDIHDR.dwOffset nocb changed to %u\n", mhdr.dwOffset);
532 mhdr.dwBytesRecorded = mhdr.dwBufferLength-1;
533 rc = playStream(hm, &mhdr);
534 todo_wine ok(rc==MMSYSERR_INVALPARAM,"midiStreamOut dwBytesRecorded/MIDIEVENT rc=%s\n", mmsys_error(rc));
535 if (!rc) {
536 test_notification(hwnd, "2 of 2 events", MOM_DONE, (DWORD_PTR)&mhdr);
539 mhdr.dwBytesRecorded = mhdr.dwBufferLength+1;
540 rc = playStream(hm, &mhdr);
541 ok(rc==MMSYSERR_INVALPARAM,"midiStreamOut dwBufferLength<dwBytesRecorded rc=%s\n", mmsys_error(rc));
542 test_notification(hwnd, "past MIDIHDR tests", 0, WHATEVER);
544 rc = midiStreamStop(hm);
545 ok(!rc, "midiStreamStop rc=%s\n", mmsys_error(rc));
546 ok(mhdr.dwUser==0x56FA552C, "MIDIHDR.dwUser changed to %lx\n", mhdr.dwUser);
548 rc = midiOutUnprepareHeader((HMIDIOUT)hm, &mhdr, sizeof(mhdr));
549 ok(!rc, "midiOutUnprepare rc=%s\n", mmsys_error(rc));
551 mhdr.dwBufferLength = 70000; /* > 64KB! */
552 mhdr.lpData = HeapAlloc(GetProcessHeap(), 0 , mhdr.dwBufferLength);
553 ok(mhdr.lpData!=NULL, "No %d bytes of memory!\n", mhdr.dwBufferLength);
554 if (mhdr.lpData) {
555 mhdr.dwFlags = 0;
556 /* PrepareHeader detects the too large buffer is for a stream. */
557 rc = midiOutPrepareHeader((HMIDIOUT)hm, &mhdr, sizeof(mhdr));
558 todo_wine ok(rc==MMSYSERR_INVALPARAM, "midiOutPrepare stream too large rc=%s\n", mmsys_error(rc));
560 rc = midiOutUnprepareHeader((HMIDIOUT)hm, &mhdr, sizeof(mhdr));
561 ok(!rc, "midiOutUnprepare rc=%s\n", mmsys_error(rc));
563 HeapFree(GetProcessHeap(), 0, mhdr.lpData);
566 rc = midiStreamClose(hm);
567 ok(!rc, "midiStreamClose rc=%s\n", mmsys_error(rc));
568 test_notification(hwnd, "midiStreamClose", MOM_CLOSE, 0);
569 test_notification(hwnd, "midiStream over", 0, WHATEVER);
572 static void test_midi_outfns(HWND hwnd)
574 HMIDIOUT hm;
575 MMRESULT rc;
576 UINT udev, ndevs = midiOutGetNumDevs();
578 rc = midiOutOpen(&hm, ndevs, 0, 0, CALLBACK_NULL);
579 ok(rc==MMSYSERR_BADDEVICEID, "midiOutOpen udev>max rc=%s\n", mmsys_error(rc));
580 if (!rc) {
581 rc = midiOutClose(hm);
582 ok(!rc, "midiOutClose rc=%s\n", mmsys_error(rc));
584 if (!ndevs) {
585 MIDIOUTCAPSA capsA;
586 skip("Found no MIDI out device\n");
588 rc = midiOutGetDevCapsA(MIDIMAPPER, &capsA, sizeof(capsA));
589 /* GetDevCaps and Open must return compatible results */
590 ok(rc==MMSYSERR_BADDEVICEID || broken(rc==MMSYSERR_NODRIVER /*nt,w2k*/), "midiOutGetDevCaps MAPPER with no MIDI rc=%s\n", mmsys_error(rc));
592 rc = midiOutOpen(&hm, MIDIMAPPER, 0, 0, CALLBACK_NULL);
593 if (rc==MIDIERR_INVALIDSETUP) todo_wine /* Wine without snd-seq */
594 ok(rc==MMSYSERR_BADDEVICEID || broken(rc==MMSYSERR_NODRIVER /*w2k*/), "midiOutOpen MAPPER with no MIDI rc=%s\n", mmsys_error(rc));
595 else
596 ok(rc==MMSYSERR_BADDEVICEID || broken(rc==MMSYSERR_NODRIVER /*w2k sound disabled*/),
597 "midiOutOpen MAPPER with no MIDI rc=%s\n", mmsys_error(rc));
598 if (!rc) {
599 rc = midiOutClose(hm);
600 ok(!rc, "midiOutClose rc=%s\n", mmsys_error(rc));
602 return;
604 trace("Found %d MIDI OUT devices\n", ndevs);
606 test_midi_mci(hwnd);
608 for (udev=0; udev < ndevs; udev++) {
609 trace("** Testing device %d\n", udev);
610 test_midiOut_device(udev, hwnd);
611 Sleep(800); /* Let the synth rest */
612 test_midiStream(udev, hwnd);
613 Sleep(800);
615 trace("** Testing MIDI mapper\n");
616 test_midiOut_device(MIDIMAPPER, hwnd);
617 Sleep(800);
618 test_midiStream(MIDIMAPPER, hwnd);
621 START_TEST(midi)
623 HWND hwnd;
624 if (1) /* select 1 for CALLBACK_WINDOW or 0 for CALLBACK_FUNCTION */
625 hwnd = CreateWindowExA(0, "static", "winmm midi test", WS_POPUP, 0,0,100,100,
626 0, 0, 0, NULL);
627 test_midi_infns(hwnd);
628 test_midi_outfns(hwnd);
629 if (hwnd) DestroyWindow(hwnd);