netstat: Initial implementation.
[wine] / dlls / winmm / mci.c
1 /*
2  * MCI internal functions
3  *
4  * Copyright 1998/1999 Eric Pouech
5  *
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.
10  *
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.
15  *
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
19  */
20
21 /* TODO:
22  * - implement WINMM (32bit) multitasking and use it in all MCI drivers
23  *   instead of the home grown one 
24  * - 16bit mmTaskXXX functions are currently broken because the 16
25  *   loader does not support binary command lines => provide Wine's
26  *   own mmtask.tsk not using binary command line.
27  * - correctly handle the MCI_ALL_DEVICE_ID in functions.
28  * - finish mapping 16 <=> 32 of MCI structures and commands
29  * - implement auto-open feature (ie, when a string command is issued
30  *   for a not yet opened device, MCI automatically opens it) 
31  * - use a default registry setting to replace the [mci] section in
32  *   configuration file (layout of info in registry should be compatible
33  *   with all Windows' version - which use different layouts of course)
34  * - implement automatic open
35  *      + only works on string interface, on regular devices (don't work on all
36  *        nor custom devices)
37  * - command table handling isn't thread safe
38  */
39
40 #include "config.h"
41 #include "wine/port.h"
42
43 #include <stdlib.h>
44 #include <stdarg.h>
45 #include <stdio.h>
46 #include <string.h>
47
48 #include "windef.h"
49 #include "winbase.h"
50 #include "wingdi.h"
51 #include "mmsystem.h"
52 #include "winuser.h"
53 #include "winnls.h"
54 #include "winreg.h"
55 #include "wownt32.h"
56
57 #include "digitalv.h"
58 #include "winemm.h"
59
60 #include "wine/debug.h"
61 #include "wine/unicode.h"
62
63 WINE_DEFAULT_DEBUG_CHANNEL(mci);
64
65 /* First MCI valid device ID (0 means error) */
66 #define MCI_MAGIC 0x0001
67
68 /* MCI settings */
69 static const WCHAR wszHklmMci  [] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s',' ','N','T','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','M','C','I',0};
70 static const WCHAR wszNull     [] = {0};
71 static const WCHAR wszAll      [] = {'A','L','L',0};
72 static const WCHAR wszMci      [] = {'M','C','I',0};
73 static const WCHAR wszOpen     [] = {'o','p','e','n',0};
74 static const WCHAR wszSystemIni[] = {'s','y','s','t','e','m','.','i','n','i',0};
75
76 static WINE_MCIDRIVER *MciDrivers;
77
78 static UINT WINAPI MCI_DefYieldProc(MCIDEVICEID wDevID, DWORD data);
79 static UINT MCI_SetCommandTable(HGLOBAL hMem, UINT uDevType);
80
81 /* dup a string and uppercase it */
82 static inline LPWSTR str_dup_upper( LPCWSTR str )
83 {
84     INT len = (strlenW(str) + 1) * sizeof(WCHAR);
85     LPWSTR p = HeapAlloc( GetProcessHeap(), 0, len );
86     if (p)
87     {
88         memcpy( p, str, len );
89         CharUpperW( p );
90     }
91     return p;
92 }
93
94 /**************************************************************************
95  *                              MCI_GetDriver                   [internal]
96  */
97 static LPWINE_MCIDRIVER MCI_GetDriver(UINT wDevID)
98 {
99     LPWINE_MCIDRIVER    wmd = 0;
100
101     EnterCriticalSection(&WINMM_cs);
102     for (wmd = MciDrivers; wmd; wmd = wmd->lpNext) {
103         if (wmd->wDeviceID == wDevID)
104             break;
105     }
106     LeaveCriticalSection(&WINMM_cs);
107     return wmd;
108 }
109
110 /**************************************************************************
111  *                              MCI_GetDriverFromString         [internal]
112  */
113 static UINT MCI_GetDriverFromString(LPCWSTR lpstrName)
114 {
115     LPWINE_MCIDRIVER    wmd;
116     UINT                ret = 0;
117
118     if (!lpstrName)
119         return 0;
120
121     if (!strcmpiW(lpstrName, wszAll))
122         return MCI_ALL_DEVICE_ID;
123
124     EnterCriticalSection(&WINMM_cs);
125     for (wmd = MciDrivers; wmd; wmd = wmd->lpNext) {
126         if (wmd->lpstrAlias && strcmpiW(wmd->lpstrAlias, lpstrName) == 0) {
127             ret = wmd->wDeviceID;
128             break;
129         }
130     }
131     LeaveCriticalSection(&WINMM_cs);
132
133     return ret;
134 }
135
136 /**************************************************************************
137  *                      MCI_MessageToString                     [internal]
138  */
139 static const char* MCI_MessageToString(UINT wMsg)
140 {
141 #define CASE(s) case (s): return #s
142
143     switch (wMsg) {
144         CASE(DRV_LOAD);
145         CASE(DRV_ENABLE);
146         CASE(DRV_OPEN);
147         CASE(DRV_CLOSE);
148         CASE(DRV_DISABLE);
149         CASE(DRV_FREE);
150         CASE(DRV_CONFIGURE);
151         CASE(DRV_QUERYCONFIGURE);
152         CASE(DRV_INSTALL);
153         CASE(DRV_REMOVE);
154         CASE(DRV_EXITSESSION);
155         CASE(DRV_EXITAPPLICATION);
156         CASE(DRV_POWER);
157         CASE(MCI_BREAK);
158         CASE(MCI_CLOSE);
159         CASE(MCI_CLOSE_DRIVER);
160         CASE(MCI_COPY);
161         CASE(MCI_CUE);
162         CASE(MCI_CUT);
163         CASE(MCI_DELETE);
164         CASE(MCI_ESCAPE);
165         CASE(MCI_FREEZE);
166         CASE(MCI_PAUSE);
167         CASE(MCI_PLAY);
168         CASE(MCI_GETDEVCAPS);
169         CASE(MCI_INFO);
170         CASE(MCI_LOAD);
171         CASE(MCI_OPEN);
172         CASE(MCI_OPEN_DRIVER);
173         CASE(MCI_PASTE);
174         CASE(MCI_PUT);
175         CASE(MCI_REALIZE);
176         CASE(MCI_RECORD);
177         CASE(MCI_RESUME);
178         CASE(MCI_SAVE);
179         CASE(MCI_SEEK);
180         CASE(MCI_SET);
181         CASE(MCI_SOUND);
182         CASE(MCI_SPIN);
183         CASE(MCI_STATUS);
184         CASE(MCI_STEP);
185         CASE(MCI_STOP);
186         CASE(MCI_SYSINFO);
187         CASE(MCI_UNFREEZE);
188         CASE(MCI_UPDATE);
189         CASE(MCI_WHERE);
190         CASE(MCI_WINDOW);
191         /* constants for digital video */
192         CASE(MCI_CAPTURE);
193         CASE(MCI_MONITOR);
194         CASE(MCI_RESERVE);
195         CASE(MCI_SETAUDIO);
196         CASE(MCI_SIGNAL);
197         CASE(MCI_SETVIDEO);
198         CASE(MCI_QUALITY);
199         CASE(MCI_LIST);
200         CASE(MCI_UNDO);
201         CASE(MCI_CONFIGURE);
202         CASE(MCI_RESTORE);
203 #undef CASE
204     default:
205         return wine_dbg_sprintf("MCI_<<%04X>>", wMsg);
206     }
207 }
208
209 static LPWSTR MCI_strdupAtoW( LPCSTR str )
210 {
211     LPWSTR ret;
212     INT len;
213
214     if (!str) return NULL;
215     len = MultiByteToWideChar( CP_ACP, 0, str, -1, NULL, 0 );
216     ret = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
217     if (ret) MultiByteToWideChar( CP_ACP, 0, str, -1, ret, len );
218     return ret;
219 }
220
221 static int MCI_MapMsgAtoW(UINT msg, DWORD_PTR dwParam1, DWORD_PTR *dwParam2)
222 {
223     if (msg < DRV_RESERVED) return 0;
224
225     switch (msg)
226     {
227     case MCI_CLOSE:
228     case MCI_CONFIGURE:
229     case MCI_PLAY:
230     case MCI_SEEK:
231     case MCI_STOP:
232     case MCI_PAUSE:
233     case MCI_GETDEVCAPS:
234     case MCI_SPIN:
235     case MCI_SET:
236     case MCI_STEP:
237     case MCI_RECORD:
238     case MCI_BREAK:
239     case MCI_STATUS:
240     case MCI_CUE:
241     case MCI_REALIZE:
242     case MCI_PUT:
243     case MCI_WHERE:
244     case MCI_FREEZE:
245     case MCI_UNFREEZE:
246     case MCI_CUT:
247     case MCI_COPY:
248     case MCI_PASTE:
249     case MCI_UPDATE:
250     case MCI_RESUME:
251     case MCI_DELETE:
252     case MCI_MONITOR:
253     case MCI_SIGNAL:
254     case MCI_UNDO:
255         return 0;
256
257     case MCI_OPEN:
258         {   /* MCI_ANIM_OPEN_PARMS is the largest known MCI_OPEN_PARMS
259              * structure, larger than MCI_WAVE_OPEN_PARMS */
260             MCI_ANIM_OPEN_PARMSA *mci_openA = (MCI_ANIM_OPEN_PARMSA*)*dwParam2;
261             MCI_ANIM_OPEN_PARMSW *mci_openW;
262             DWORD_PTR *ptr;
263
264             ptr = HeapAlloc(GetProcessHeap(), 0, sizeof(DWORD_PTR) + sizeof(*mci_openW));
265             if (!ptr) return -1;
266
267             *ptr++ = *dwParam2; /* save the previous pointer */
268             *dwParam2 = (DWORD_PTR)ptr;
269             mci_openW = (MCI_ANIM_OPEN_PARMSW *)ptr;
270
271             if (dwParam1 & MCI_NOTIFY)
272                 mci_openW->dwCallback = mci_openA->dwCallback;
273
274             if (dwParam1 & MCI_OPEN_TYPE)
275             {
276                 if (dwParam1 & MCI_OPEN_TYPE_ID)
277                     mci_openW->lpstrDeviceType = (LPCWSTR)mci_openA->lpstrDeviceType;
278                 else
279                     mci_openW->lpstrDeviceType = MCI_strdupAtoW(mci_openA->lpstrDeviceType);
280             }
281             if (dwParam1 & MCI_OPEN_ELEMENT)
282             {
283                 if (dwParam1 & MCI_OPEN_ELEMENT_ID)
284                     mci_openW->lpstrElementName = (LPCWSTR)mci_openA->lpstrElementName;
285                 else
286                     mci_openW->lpstrElementName = MCI_strdupAtoW(mci_openA->lpstrElementName);
287             }
288             if (dwParam1 & MCI_OPEN_ALIAS)
289                 mci_openW->lpstrAlias = MCI_strdupAtoW(mci_openA->lpstrAlias);
290             /* We don't know how many DWORD follow, as
291              * the structure depends on the device. */
292             if (HIWORD(dwParam1))
293                 memcpy(&mci_openW->dwStyle, &mci_openA->dwStyle, sizeof(MCI_ANIM_OPEN_PARMSW) - sizeof(MCI_OPEN_PARMSW));
294         }
295         return 1;
296
297     case MCI_WINDOW:
298         if (dwParam1 & MCI_ANIM_WINDOW_TEXT)
299         {
300             MCI_ANIM_WINDOW_PARMSA *mci_windowA = (MCI_ANIM_WINDOW_PARMSA *)*dwParam2;
301             MCI_ANIM_WINDOW_PARMSW *mci_windowW;
302
303             mci_windowW = HeapAlloc(GetProcessHeap(), 0, sizeof(*mci_windowW));
304             if (!mci_windowW) return -1;
305
306             *dwParam2 = (DWORD_PTR)mci_windowW;
307
308             mci_windowW->lpstrText = MCI_strdupAtoW(mci_windowA->lpstrText);
309
310             if (dwParam1 & MCI_NOTIFY)
311                 mci_windowW->dwCallback = mci_windowA->dwCallback;
312             if (dwParam1 & MCI_ANIM_WINDOW_HWND)
313                 mci_windowW->hWnd = mci_windowA->hWnd;
314             if (dwParam1 & MCI_ANIM_WINDOW_STATE)
315                 mci_windowW->nCmdShow = mci_windowA->nCmdShow;
316
317             return 1;
318         }
319         return 0;
320
321     case MCI_SYSINFO:
322         if (dwParam1 & (MCI_SYSINFO_INSTALLNAME | MCI_SYSINFO_NAME))
323         {
324             MCI_SYSINFO_PARMSA *mci_sysinfoA = (MCI_SYSINFO_PARMSA *)*dwParam2;
325             MCI_SYSINFO_PARMSW *mci_sysinfoW;
326             DWORD_PTR *ptr;
327
328             ptr = HeapAlloc(GetProcessHeap(), 0, sizeof(*mci_sysinfoW) + sizeof(DWORD_PTR));
329             if (!ptr) return -1;
330
331             *ptr++ = *dwParam2; /* save the previous pointer */
332             *dwParam2 = (DWORD_PTR)ptr;
333             mci_sysinfoW = (MCI_SYSINFO_PARMSW *)ptr;
334
335             if (dwParam1 & MCI_NOTIFY)
336                 mci_sysinfoW->dwCallback = mci_sysinfoA->dwCallback;
337
338             /* Size is measured in numbers of characters, despite what MSDN says. */
339             mci_sysinfoW->dwRetSize = mci_sysinfoA->dwRetSize;
340             mci_sysinfoW->lpstrReturn = HeapAlloc(GetProcessHeap(), 0, mci_sysinfoW->dwRetSize * sizeof(WCHAR));
341             mci_sysinfoW->dwNumber = mci_sysinfoA->dwNumber;
342             mci_sysinfoW->wDeviceType = mci_sysinfoA->wDeviceType;
343             return 1;
344         }
345         return 0;
346     case MCI_INFO:
347         {
348             MCI_DGV_INFO_PARMSA *mci_infoA = (MCI_DGV_INFO_PARMSA *)*dwParam2;
349             MCI_DGV_INFO_PARMSW *mci_infoW;
350             DWORD_PTR *ptr;
351
352             ptr = HeapAlloc(GetProcessHeap(), 0, sizeof(*mci_infoW) + sizeof(DWORD_PTR));
353             if (!ptr) return -1;
354
355             *ptr++ = *dwParam2; /* save the previous pointer */
356             *dwParam2 = (DWORD_PTR)ptr;
357             mci_infoW = (MCI_DGV_INFO_PARMSW *)ptr;
358
359             if (dwParam1 & MCI_NOTIFY)
360                 mci_infoW->dwCallback = mci_infoA->dwCallback;
361
362             /* Size is measured in numbers of characters. */
363             mci_infoW->dwRetSize = mci_infoA->dwRetSize;
364             mci_infoW->lpstrReturn = HeapAlloc(GetProcessHeap(), 0, mci_infoW->dwRetSize * sizeof(WCHAR));
365             if (dwParam1 & MCI_DGV_INFO_ITEM)
366                 mci_infoW->dwItem = mci_infoA->dwItem;
367             return 1;
368         }
369     case MCI_SAVE:
370     case MCI_LOAD:
371     case MCI_CAPTURE:
372     case MCI_RESTORE:
373         {   /* All these commands have the same layout: callback + string + optional rect */
374             MCI_OVLY_LOAD_PARMSA *mci_loadA = (MCI_OVLY_LOAD_PARMSA *)*dwParam2;
375             MCI_OVLY_LOAD_PARMSW *mci_loadW;
376
377             mci_loadW = HeapAlloc(GetProcessHeap(), 0, sizeof(*mci_loadW));
378             if (!mci_loadW) return -1;
379
380             *dwParam2 = (DWORD_PTR)mci_loadW;
381             if (dwParam1 & MCI_NOTIFY)
382                 mci_loadW->dwCallback = mci_loadA->dwCallback;
383             mci_loadW->lpfilename = MCI_strdupAtoW(mci_loadA->lpfilename);
384             if ((MCI_SAVE    == msg && dwParam1 & MCI_DGV_RECT) ||
385                 (MCI_LOAD    == msg && dwParam1 & MCI_OVLY_RECT) ||
386                 (MCI_CAPTURE == msg && dwParam1 & MCI_DGV_CAPTURE_AT) ||
387                 (MCI_RESTORE == msg && dwParam1 & MCI_DGV_RESTORE_AT))
388                 mci_loadW->rc = mci_loadA->rc;
389             return 1;
390         }
391     case MCI_SOUND:
392     case MCI_ESCAPE:
393         {   /* All these commands have the same layout: callback + string */
394             MCI_VD_ESCAPE_PARMSA *mci_vd_escapeA = (MCI_VD_ESCAPE_PARMSA *)*dwParam2;
395             MCI_VD_ESCAPE_PARMSW *mci_vd_escapeW;
396
397             mci_vd_escapeW = HeapAlloc(GetProcessHeap(), 0, sizeof(*mci_vd_escapeW));
398             if (!mci_vd_escapeW) return -1;
399
400             *dwParam2 = (DWORD_PTR)mci_vd_escapeW;
401             if (dwParam1 & MCI_NOTIFY)
402                 mci_vd_escapeW->dwCallback = mci_vd_escapeA->dwCallback;
403             mci_vd_escapeW->lpstrCommand = MCI_strdupAtoW(mci_vd_escapeA->lpstrCommand);
404             return 1;
405         }
406     case MCI_SETAUDIO:
407     case MCI_SETVIDEO:
408         if (!(dwParam1 & (MCI_DGV_SETVIDEO_QUALITY | MCI_DGV_SETVIDEO_ALG
409                         | MCI_DGV_SETAUDIO_QUALITY | MCI_DGV_SETAUDIO_ALG)))
410             return 0;
411         /* fall through to default */
412     case MCI_RESERVE:
413     case MCI_QUALITY:
414     case MCI_LIST:
415     default:
416         FIXME("Message %s needs translation\n", MCI_MessageToString(msg));
417         return 0; /* pass through untouched */
418     }
419 }
420
421 static void MCI_UnmapMsgAtoW(UINT msg, DWORD_PTR dwParam1, DWORD_PTR dwParam2,
422                               DWORD result)
423 {
424     switch (msg)
425     {
426     case MCI_OPEN:
427         {
428             DWORD_PTR *ptr = (DWORD_PTR *)dwParam2 - 1;
429             MCI_OPEN_PARMSA *mci_openA = (MCI_OPEN_PARMSA *)*ptr;
430             MCI_OPEN_PARMSW *mci_openW = (MCI_OPEN_PARMSW *)dwParam2;
431
432             mci_openA->wDeviceID = mci_openW->wDeviceID;
433
434             if (dwParam1 & MCI_OPEN_TYPE)
435             {
436                 if (!(dwParam1 & MCI_OPEN_TYPE_ID))
437                     HeapFree(GetProcessHeap(), 0, (LPWSTR)mci_openW->lpstrDeviceType);
438             }
439             if (dwParam1 & MCI_OPEN_ELEMENT)
440             {
441                 if (!(dwParam1 & MCI_OPEN_ELEMENT_ID))
442                     HeapFree(GetProcessHeap(), 0, (LPWSTR)mci_openW->lpstrElementName);
443             }
444             if (dwParam1 & MCI_OPEN_ALIAS)
445                 HeapFree(GetProcessHeap(), 0, (LPWSTR)mci_openW->lpstrAlias);
446             HeapFree(GetProcessHeap(), 0, ptr);
447         }
448         break;
449     case MCI_WINDOW:
450         if (dwParam1 & MCI_ANIM_WINDOW_TEXT)
451         {
452             MCI_ANIM_WINDOW_PARMSW *mci_windowW = (MCI_ANIM_WINDOW_PARMSW *)dwParam2;
453
454             HeapFree(GetProcessHeap(), 0, (void*)mci_windowW->lpstrText);
455             HeapFree(GetProcessHeap(), 0, mci_windowW);
456         }
457         break;
458
459     case MCI_SYSINFO:
460         if (dwParam1 & (MCI_SYSINFO_INSTALLNAME | MCI_SYSINFO_NAME))
461         {
462             DWORD_PTR *ptr = (DWORD_PTR *)dwParam2 - 1;
463             MCI_SYSINFO_PARMSA *mci_sysinfoA = (MCI_SYSINFO_PARMSA *)*ptr;
464             MCI_SYSINFO_PARMSW *mci_sysinfoW = (MCI_SYSINFO_PARMSW *)dwParam2;
465
466             if (!result)
467             {
468                 WideCharToMultiByte(CP_ACP, 0,
469                                     mci_sysinfoW->lpstrReturn, -1,
470                                     mci_sysinfoA->lpstrReturn, mci_sysinfoA->dwRetSize,
471                                     NULL, NULL);
472             }
473
474             HeapFree(GetProcessHeap(), 0, mci_sysinfoW->lpstrReturn);
475             HeapFree(GetProcessHeap(), 0, ptr);
476         }
477         break;
478     case MCI_INFO:
479         {
480             DWORD_PTR *ptr = (DWORD_PTR *)dwParam2 - 1;
481             MCI_INFO_PARMSA *mci_infoA = (MCI_INFO_PARMSA *)*ptr;
482             MCI_INFO_PARMSW *mci_infoW = (MCI_INFO_PARMSW *)dwParam2;
483
484             if (!result)
485             {
486                 WideCharToMultiByte(CP_ACP, 0,
487                                     mci_infoW->lpstrReturn, -1,
488                                     mci_infoA->lpstrReturn, mci_infoA->dwRetSize,
489                                     NULL, NULL);
490             }
491
492             HeapFree(GetProcessHeap(), 0, mci_infoW->lpstrReturn);
493             HeapFree(GetProcessHeap(), 0, ptr);
494         }
495         break;
496     case MCI_SAVE:
497     case MCI_LOAD:
498     case MCI_CAPTURE:
499     case MCI_RESTORE:
500         {   /* All these commands have the same layout: callback + string + optional rect */
501             MCI_OVLY_LOAD_PARMSW *mci_loadW = (MCI_OVLY_LOAD_PARMSW *)dwParam2;
502
503             HeapFree(GetProcessHeap(), 0, (void*)mci_loadW->lpfilename);
504             HeapFree(GetProcessHeap(), 0, mci_loadW);
505         }
506         break;
507     case MCI_SOUND:
508     case MCI_ESCAPE:
509         {   /* All these commands have the same layout: callback + string */
510             MCI_VD_ESCAPE_PARMSW *mci_vd_escapeW = (MCI_VD_ESCAPE_PARMSW *)dwParam2;
511
512             HeapFree(GetProcessHeap(), 0, (void*)mci_vd_escapeW->lpstrCommand);
513             HeapFree(GetProcessHeap(), 0, mci_vd_escapeW);
514         }
515         break;
516
517     default:
518         FIXME("Message %s needs unmapping\n", MCI_MessageToString(msg));
519         break;
520     }
521 }
522
523 /**************************************************************************
524  *                              MCI_GetDevTypeFromFileName      [internal]
525  */
526 static  DWORD   MCI_GetDevTypeFromFileName(LPCWSTR fileName, LPWSTR buf, UINT len)
527 {
528     LPCWSTR     tmp;
529     HKEY        hKey;
530     static const WCHAR keyW[] = {'S','O','F','T','W','A','R','E','\\','M','i','c','r','o','s','o','f','t','\\',
531                                  'W','i','n','d','o','w','s',' ','N','T','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
532                                  'M','C','I',' ','E','x','t','e','n','s','i','o','n','s',0};
533     if ((tmp = strrchrW(fileName, '.'))) {
534         if (RegOpenKeyExW( HKEY_LOCAL_MACHINE, keyW,
535                            0, KEY_QUERY_VALUE, &hKey ) == ERROR_SUCCESS) {
536             DWORD dwLen = len;
537             LONG lRet = RegQueryValueExW( hKey, tmp + 1, 0, 0, (void*)buf, &dwLen ); 
538             RegCloseKey( hKey );
539             if (lRet == ERROR_SUCCESS) return 0;
540         }
541         TRACE("No ...\\MCI Extensions entry for %s found.\n", debugstr_w(tmp));
542     }
543     return MCIERR_EXTENSION_NOT_FOUND;
544 }
545
546 /**************************************************************************
547  *                              MCI_GetDevTypeFromResource      [internal]
548  */
549 static  UINT    MCI_GetDevTypeFromResource(LPCWSTR lpstrName)
550 {
551     WCHAR       buf[32];
552     UINT        uDevType;
553     for (uDevType = MCI_DEVTYPE_FIRST; uDevType <= MCI_DEVTYPE_LAST; uDevType++) {
554         if (LoadStringW(hWinMM32Instance, uDevType, buf, sizeof(buf) / sizeof(WCHAR))) {
555             /* FIXME: ignore digits suffix */
556             if (!strcmpiW(buf, lpstrName))
557                 return uDevType;
558         }
559     }
560     return 0;
561 }
562
563 #define MAX_MCICMDTABLE                 20
564 #define MCI_COMMAND_TABLE_NOT_LOADED    0xFFFE
565
566 typedef struct tagWINE_MCICMDTABLE {
567     UINT                uDevType;
568     HGLOBAL             hMem;
569     const BYTE*         lpTable;
570     UINT                nVerbs;         /* number of verbs in command table */
571     LPCWSTR*            aVerbs;         /* array of verbs to speed up the verb look up process */
572 } WINE_MCICMDTABLE, *LPWINE_MCICMDTABLE;
573
574 static WINE_MCICMDTABLE S_MciCmdTable[MAX_MCICMDTABLE];
575
576 /**************************************************************************
577  *                              MCI_IsCommandTableValid         [internal]
578  */
579 static  BOOL            MCI_IsCommandTableValid(UINT uTbl)
580 {
581     const BYTE* lmem;
582     LPCWSTR     str;
583     DWORD       flg;
584     WORD        eid;
585     int         idx = 0;
586     BOOL        inCst = FALSE;
587
588     TRACE("Dumping cmdTbl=%d [lpTable=%p devType=%d]\n",
589           uTbl, S_MciCmdTable[uTbl].lpTable, S_MciCmdTable[uTbl].uDevType);
590
591     if (uTbl >= MAX_MCICMDTABLE || !S_MciCmdTable[uTbl].lpTable)
592         return FALSE;
593
594     lmem = S_MciCmdTable[uTbl].lpTable;
595     do {
596         str = (LPCWSTR)lmem;
597         lmem += (strlenW(str) + 1) * sizeof(WCHAR);
598         flg = *(const DWORD*)lmem;
599         eid = *(const WORD*)(lmem + sizeof(DWORD));
600         lmem += sizeof(DWORD) + sizeof(WORD);
601         idx ++;
602         /* TRACE("cmd=%s %08lx %04x\n", debugstr_w(str), flg, eid); */
603         switch (eid) {
604         case MCI_COMMAND_HEAD:          if (!*str || !flg) return FALSE; idx = 0;               break;  /* check unicity of str in table */
605         case MCI_STRING:                if (inCst) return FALSE;                                break;
606         case MCI_HWND:                  /* Occurs inside MCI_CONSTANT as in "window handle default" */
607         case MCI_HPAL:
608         case MCI_HDC:
609         case MCI_INTEGER:               if (!*str) return FALSE;                                break;
610         case MCI_END_COMMAND:           if (*str || flg || idx == 0) return FALSE; idx = 0;     break;
611         case MCI_RETURN:                if (*str || idx != 1) return FALSE;                     break;
612         case MCI_FLAG:                  if (!*str) return FALSE;                                break;
613         case MCI_END_COMMAND_LIST:      if (*str || flg) return FALSE;  idx = 0;                break;
614         case MCI_RECT:                  if (!*str || inCst) return FALSE;                       break;
615         case MCI_CONSTANT:              if (inCst) return FALSE; inCst = TRUE;                  break;
616         case MCI_END_CONSTANT:          if (*str || flg || !inCst) return FALSE; inCst = FALSE; break;
617         default:                        return FALSE;
618         }
619     } while (eid != MCI_END_COMMAND_LIST);
620     return TRUE;
621 }
622
623 /**************************************************************************
624  *                              MCI_DumpCommandTable            [internal]
625  */
626 static  BOOL            MCI_DumpCommandTable(UINT uTbl)
627 {
628     const BYTE* lmem;
629     LPCWSTR     str;
630     WORD        eid;
631
632     if (!MCI_IsCommandTableValid(uTbl)) {
633         ERR("Ooops: %d is not valid\n", uTbl);
634         return FALSE;
635     }
636
637     lmem = S_MciCmdTable[uTbl].lpTable;
638     do {
639         do {
640             /* DWORD flg; */
641             str = (LPCWSTR)lmem;
642             lmem += (strlenW(str) + 1) * sizeof(WCHAR);
643             /* flg = *(const DWORD*)lmem; */
644             eid = *(const WORD*)(lmem + sizeof(DWORD));
645             /* TRACE("cmd=%s %08lx %04x\n", debugstr_w(str), flg, eid); */
646             lmem += sizeof(DWORD) + sizeof(WORD);
647         } while (eid != MCI_END_COMMAND && eid != MCI_END_COMMAND_LIST);
648         /* EPP TRACE(" => end of command%s\n", (eid == MCI_END_COMMAND_LIST) ? " list" : ""); */
649     } while (eid != MCI_END_COMMAND_LIST);
650     return TRUE;
651 }
652
653
654 /**************************************************************************
655  *                              MCI_GetCommandTable             [internal]
656  */
657 static  UINT            MCI_GetCommandTable(UINT uDevType)
658 {
659     UINT        uTbl;
660     WCHAR       buf[32];
661     LPCWSTR     str = NULL;
662
663     /* first look up existing for existing devType */
664     for (uTbl = 0; uTbl < MAX_MCICMDTABLE; uTbl++) {
665         if (S_MciCmdTable[uTbl].lpTable && S_MciCmdTable[uTbl].uDevType == uDevType)
666             return uTbl;
667     }
668
669     /* well try to load id */
670     if (uDevType >= MCI_DEVTYPE_FIRST && uDevType <= MCI_DEVTYPE_LAST) {
671         if (LoadStringW(hWinMM32Instance, uDevType, buf, sizeof(buf) / sizeof(WCHAR))) {
672             str = buf;
673         }
674     } else if (uDevType == 0) {
675         static const WCHAR wszCore[] = {'C','O','R','E',0};
676         str = wszCore;
677     }
678     uTbl = MCI_NO_COMMAND_TABLE;
679     if (str) {
680         HRSRC   hRsrc = FindResourceW(hWinMM32Instance, str, (LPCWSTR)RT_RCDATA);
681         HANDLE  hMem = 0;
682
683         if (hRsrc) hMem = LoadResource(hWinMM32Instance, hRsrc);
684         if (hMem) {
685             uTbl = MCI_SetCommandTable(hMem, uDevType);
686         } else {
687             WARN("No command table found in resource %p[%s]\n",
688                  hWinMM32Instance, debugstr_w(str));
689         }
690     }
691     TRACE("=> %d\n", uTbl);
692     return uTbl;
693 }
694
695 /**************************************************************************
696  *                              MCI_SetCommandTable             [internal]
697  */
698 static UINT MCI_SetCommandTable(HGLOBAL hMem, UINT uDevType)
699 {
700     int                 uTbl;
701     static      BOOL    bInitDone = FALSE;
702
703     /* <HACK>
704      * The CORE command table must be loaded first, so that MCI_GetCommandTable()
705      * can be called with 0 as a uDevType to retrieve it.
706      * </HACK>
707      */
708     if (!bInitDone) {
709         bInitDone = TRUE;
710         MCI_GetCommandTable(0);
711     }
712     TRACE("(%p, %u)\n", hMem, uDevType);
713     for (uTbl = 0; uTbl < MAX_MCICMDTABLE; uTbl++) {
714         if (!S_MciCmdTable[uTbl].lpTable) {
715             const BYTE* lmem;
716             LPCWSTR     str;
717             WORD        eid;
718             WORD        count;
719
720             S_MciCmdTable[uTbl].uDevType = uDevType;
721             S_MciCmdTable[uTbl].lpTable = LockResource(hMem);
722             S_MciCmdTable[uTbl].hMem = hMem;
723
724             if (TRACE_ON(mci)) {
725                 MCI_DumpCommandTable(uTbl);
726             }
727
728             /* create the verbs table */
729             /* get # of entries */
730             lmem = S_MciCmdTable[uTbl].lpTable;
731             count = 0;
732             do {
733                 str = (LPCWSTR)lmem;
734                 lmem += (strlenW(str) + 1) * sizeof(WCHAR);
735                 eid = *(const WORD*)(lmem + sizeof(DWORD));
736                 lmem += sizeof(DWORD) + sizeof(WORD);
737                 if (eid == MCI_COMMAND_HEAD)
738                     count++;
739             } while (eid != MCI_END_COMMAND_LIST);
740
741             S_MciCmdTable[uTbl].aVerbs = HeapAlloc(GetProcessHeap(), 0, count * sizeof(LPCWSTR));
742             S_MciCmdTable[uTbl].nVerbs = count;
743
744             lmem = S_MciCmdTable[uTbl].lpTable;
745             count = 0;
746             do {
747                 str = (LPCWSTR)lmem;
748                 lmem += (strlenW(str) + 1) * sizeof(WCHAR);
749                 eid = *(const WORD*)(lmem + sizeof(DWORD));
750                 lmem += sizeof(DWORD) + sizeof(WORD);
751                 if (eid == MCI_COMMAND_HEAD)
752                     S_MciCmdTable[uTbl].aVerbs[count++] = str;
753             } while (eid != MCI_END_COMMAND_LIST);
754             /* assert(count == S_MciCmdTable[uTbl].nVerbs); */
755             return uTbl;
756         }
757     }
758
759     return MCI_NO_COMMAND_TABLE;
760 }
761
762 /**************************************************************************
763  *                              MCI_UnLoadMciDriver             [internal]
764  */
765 static  BOOL    MCI_UnLoadMciDriver(LPWINE_MCIDRIVER wmd)
766 {
767     LPWINE_MCIDRIVER*           tmp;
768
769     if (!wmd)
770         return TRUE;
771
772     CloseDriver(wmd->hDriver, 0, 0);
773
774     if (wmd->dwPrivate != 0)
775         WARN("Unloading mci driver with non nul dwPrivate field\n");
776
777     EnterCriticalSection(&WINMM_cs);
778     for (tmp = &MciDrivers; *tmp; tmp = &(*tmp)->lpNext) {
779         if (*tmp == wmd) {
780             *tmp = wmd->lpNext;
781             break;
782         }
783     }
784     LeaveCriticalSection(&WINMM_cs);
785
786     HeapFree(GetProcessHeap(), 0, wmd->lpstrDeviceType);
787     HeapFree(GetProcessHeap(), 0, wmd->lpstrAlias);
788
789     HeapFree(GetProcessHeap(), 0, wmd);
790     return TRUE;
791 }
792
793 /**************************************************************************
794  *                              MCI_OpenMciDriver               [internal]
795  */
796 static  BOOL    MCI_OpenMciDriver(LPWINE_MCIDRIVER wmd, LPCWSTR drvTyp, DWORD_PTR lp)
797 {
798     WCHAR       libName[128];
799
800     if (!DRIVER_GetLibName(drvTyp, wszMci, libName, sizeof(libName)))
801         return FALSE;
802
803     /* First load driver */
804     wmd->hDriver = (HDRVR)DRIVER_TryOpenDriver32(libName, lp);
805     return wmd->hDriver != NULL;
806 }
807
808 /**************************************************************************
809  *                              MCI_LoadMciDriver               [internal]
810  */
811 static  DWORD   MCI_LoadMciDriver(LPCWSTR _strDevTyp, LPWINE_MCIDRIVER* lpwmd)
812 {
813     LPWSTR                      strDevTyp = str_dup_upper(_strDevTyp);
814     LPWINE_MCIDRIVER            wmd = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*wmd));
815     MCI_OPEN_DRIVER_PARMSW      modp;
816     DWORD                       dwRet = 0;
817
818     if (!wmd || !strDevTyp) {
819         dwRet = MCIERR_OUT_OF_MEMORY;
820         goto errCleanUp;
821     }
822
823     wmd->lpfnYieldProc = MCI_DefYieldProc;
824     wmd->dwYieldData = VK_CANCEL;
825     wmd->CreatorThread = GetCurrentThreadId();
826
827     EnterCriticalSection(&WINMM_cs);
828     /* wmd must be inserted in list before sending opening the driver, because it
829      * may want to lookup at wDevID
830      */
831     wmd->lpNext = MciDrivers;
832     MciDrivers = wmd;
833
834     for (modp.wDeviceID = MCI_MAGIC;
835          MCI_GetDriver(modp.wDeviceID) != 0;
836          modp.wDeviceID++);
837
838     wmd->wDeviceID = modp.wDeviceID;
839
840     LeaveCriticalSection(&WINMM_cs);
841
842     TRACE("wDevID=%04X\n", modp.wDeviceID);
843
844     modp.lpstrParams = NULL;
845
846     if (!MCI_OpenMciDriver(wmd, strDevTyp, (DWORD_PTR)&modp)) {
847         /* silence warning if all is used... some bogus program use commands like
848          * 'open all'...
849          */
850         if (strcmpiW(strDevTyp, wszAll) == 0) {
851             dwRet = MCIERR_CANNOT_USE_ALL;
852         } else {
853             FIXME("Couldn't load driver for type %s.\n",
854                   debugstr_w(strDevTyp));
855             dwRet = MCIERR_DEVICE_NOT_INSTALLED;
856         }
857         goto errCleanUp;
858     }
859
860     /* FIXME: should also check that module's description is of the form
861      * MODULENAME:[MCI] comment
862      */
863
864     /* some drivers will return 0x0000FFFF, some others 0xFFFFFFFF */
865     wmd->uSpecificCmdTable = LOWORD(modp.wCustomCommandTable);
866     wmd->uTypeCmdTable = MCI_COMMAND_TABLE_NOT_LOADED;
867
868     TRACE("Loaded driver %p (%s), type is %d, cmdTable=%08x\n",
869           wmd->hDriver, debugstr_w(strDevTyp), modp.wType, modp.wCustomCommandTable);
870
871     wmd->lpstrDeviceType = strDevTyp;
872     wmd->wType = modp.wType;
873
874     TRACE("mcidev=%d, uDevTyp=%04X wDeviceID=%04X !\n",
875           modp.wDeviceID, modp.wType, modp.wDeviceID);
876     *lpwmd = wmd;
877     return 0;
878 errCleanUp:
879     MCI_UnLoadMciDriver(wmd);
880     HeapFree(GetProcessHeap(), 0, strDevTyp);
881     *lpwmd = 0;
882     return dwRet;
883 }
884
885 /**************************************************************************
886  *                      MCI_SendCommandFrom32                   [internal]
887  */
888 static DWORD MCI_SendCommandFrom32(MCIDEVICEID wDevID, UINT16 wMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2)
889 {
890     DWORD               dwRet = MCIERR_INVALID_DEVICE_ID;
891     LPWINE_MCIDRIVER    wmd = MCI_GetDriver(wDevID);
892
893     if (wmd) {
894         dwRet = SendDriverMessage(wmd->hDriver, wMsg, dwParam1, dwParam2);
895     }
896     return dwRet;
897 }
898
899 /**************************************************************************
900  *                      MCI_FinishOpen                          [internal]
901  *
902  * Three modes of operation:
903  * 1 open foo.ext ...        -> OPEN_ELEMENT with lpstrElementName=foo.ext
904  *   open sequencer!foo.ext     same         with lpstrElementName=foo.ext
905  * 2 open new type waveaudio -> OPEN_ELEMENT with empty ("") lpstrElementName
906  * 3 open sequencer          -> OPEN_ELEMENT unset, and
907  *   capability sequencer       (auto-open)  likewise
908  */
909 static  DWORD   MCI_FinishOpen(LPWINE_MCIDRIVER wmd, LPMCI_OPEN_PARMSW lpParms,
910                                DWORD dwParam)
911 {
912     LPCWSTR alias = NULL;
913     /* Open always defines an alias for further reference */
914     if (dwParam & MCI_OPEN_ALIAS) {         /* open ... alias */
915         alias = lpParms->lpstrAlias;
916         if (MCI_GetDriverFromString(alias))
917             return MCIERR_DUPLICATE_ALIAS;
918     } else {
919         if ((dwParam & MCI_OPEN_ELEMENT)    /* open file.wav */
920             && !(dwParam & MCI_OPEN_ELEMENT_ID))
921             alias = lpParms->lpstrElementName;
922         else if (dwParam & MCI_OPEN_TYPE )  /* open cdaudio */
923             alias = wmd->lpstrDeviceType;
924         if (alias && MCI_GetDriverFromString(alias))
925             return MCIERR_DEVICE_OPEN;
926     }
927     if (alias) {
928         wmd->lpstrAlias = HeapAlloc(GetProcessHeap(), 0, (strlenW(alias)+1) * sizeof(WCHAR));
929         if (!wmd->lpstrAlias) return MCIERR_OUT_OF_MEMORY;
930         strcpyW( wmd->lpstrAlias, alias);
931         /* In most cases, natives adds MCI_OPEN_ALIAS to the flags passed to the driver.
932          * Don't.  The drivers don't care about the winmm alias. */
933     }
934     lpParms->wDeviceID = wmd->wDeviceID;
935
936     return MCI_SendCommandFrom32(wmd->wDeviceID, MCI_OPEN_DRIVER, dwParam,
937                                  (DWORD_PTR)lpParms);
938 }
939
940 /**************************************************************************
941  *                              MCI_FindCommand         [internal]
942  */
943 static  LPCWSTR         MCI_FindCommand(UINT uTbl, LPCWSTR verb)
944 {
945     UINT        idx;
946
947     if (uTbl >= MAX_MCICMDTABLE || !S_MciCmdTable[uTbl].lpTable)
948         return NULL;
949
950     /* another improvement would be to have the aVerbs array sorted,
951      * so that we could use a dichotomic search on it, rather than this dumb
952      * array look up
953      */
954     for (idx = 0; idx < S_MciCmdTable[uTbl].nVerbs; idx++) {
955         if (strcmpiW(S_MciCmdTable[uTbl].aVerbs[idx], verb) == 0)
956             return S_MciCmdTable[uTbl].aVerbs[idx];
957     }
958
959     return NULL;
960 }
961
962 /**************************************************************************
963  *                              MCI_GetReturnType               [internal]
964  */
965 static  DWORD           MCI_GetReturnType(LPCWSTR lpCmd)
966 {
967     lpCmd = (LPCWSTR)((const BYTE*)(lpCmd + strlenW(lpCmd) + 1) + sizeof(DWORD) + sizeof(WORD));
968     if (*lpCmd == '\0' && *(const WORD*)((const BYTE*)(lpCmd + 1) + sizeof(DWORD)) == MCI_RETURN) {
969         return *(const DWORD*)(lpCmd + 1);
970     }
971     return 0L;
972 }
973
974 /**************************************************************************
975  *                              MCI_GetMessage                  [internal]
976  */
977 static  WORD            MCI_GetMessage(LPCWSTR lpCmd)
978 {
979     return (WORD)*(const DWORD*)(lpCmd + strlenW(lpCmd) + 1);
980 }
981
982 /**************************************************************************
983  *                              MCI_GetDWord                    [internal]
984  *
985  * Accept 0 -1 255 255:0 255:255:255:255 :::1 1::: 2::3 ::4: 12345678
986  * Refuse -1:0 0:-1 :: 256:0 1:256 0::::1
987  */
988 static  BOOL            MCI_GetDWord(DWORD* data, LPWSTR* ptr)
989 {
990     LPWSTR      ret = *ptr;
991     DWORD       total = 0, shift = 0;
992     BOOL        sign = FALSE, digits = FALSE;
993
994     while (*ret == ' ' || *ret == '\t') ret++;
995     if (*ret == '-') {
996         ret++;
997         sign = TRUE;
998     }
999     for(;;) {
1000         DWORD   val = 0;
1001         while ('0' <= *ret && *ret <= '9') {
1002             val = *ret++ - '0' + 10 * val;
1003             digits = TRUE;
1004         }
1005         switch (*ret) {
1006         case '\0':      break;
1007         case '\t':
1008         case ' ':       ret++; break;
1009         default:        return FALSE;
1010         case ':':
1011             if ((val >= 256) || (shift >= 24))  return FALSE;
1012             total |= val << shift;
1013             shift += 8;
1014             ret++;
1015             continue;
1016         }
1017
1018         if (!digits)                            return FALSE;
1019         if (shift && (val >= 256 || sign))      return FALSE;
1020         total |= val << shift;
1021         *data = sign ? -total : total;
1022         *ptr = ret;
1023         return TRUE;
1024     }
1025 }
1026
1027 /**************************************************************************
1028  *                              MCI_GetString           [internal]
1029  */
1030 static  DWORD   MCI_GetString(LPWSTR* str, LPWSTR* args)
1031 {
1032     LPWSTR      ptr = *args;
1033
1034     /* see if we have a quoted string */
1035     if (*ptr == '"') {
1036         ptr = strchrW(*str = ptr + 1, '"');
1037         if (!ptr) return MCIERR_NO_CLOSING_QUOTE;
1038         /* FIXME: shall we escape \" from string ?? */
1039         if (ptr[-1] == '\\') TRACE("Ooops: un-escaped \"\n");
1040         *ptr++ = '\0'; /* remove trailing " */
1041         if (*ptr != ' ' && *ptr != '\0') return MCIERR_EXTRA_CHARACTERS;
1042     } else {
1043         ptr = strchrW(ptr, ' ');
1044
1045         if (ptr) {
1046             *ptr++ = '\0';
1047         } else {
1048             ptr = *args + strlenW(*args);
1049         }
1050         *str = *args;
1051     }
1052
1053     *args = ptr;
1054     return 0;
1055 }
1056
1057 #define MCI_DATA_SIZE   16
1058
1059 /**************************************************************************
1060  *                              MCI_ParseOptArgs                [internal]
1061  */
1062 static  DWORD   MCI_ParseOptArgs(DWORD* data, int _offset, LPCWSTR lpCmd,
1063                                  LPWSTR args, LPDWORD dwFlags)
1064 {
1065     int         len, offset;
1066     const char* lmem;
1067     LPCWSTR     str;
1068     DWORD       dwRet, flg, cflg = 0;
1069     WORD        eid;
1070     BOOL        inCst, found;
1071
1072     /* loop on arguments */
1073     while (*args) {
1074         lmem = (const char*)lpCmd;
1075         found = inCst = FALSE;
1076         offset = _offset;
1077
1078         /* skip any leading white space(s) */
1079         while (*args == ' ') args++;
1080         TRACE("args=%s\n", debugstr_w(args));
1081
1082         do { /* loop on options for command table for the requested verb */
1083             str = (LPCWSTR)lmem;
1084             lmem += ((len = strlenW(str)) + 1) * sizeof(WCHAR);
1085             flg = *(const DWORD*)lmem;
1086             eid = *(const WORD*)(lmem + sizeof(DWORD));
1087             lmem += sizeof(DWORD) + sizeof(WORD);
1088             /* TRACE("\tcmd=%s inCst=%c eid=%04x\n", debugstr_w(str), inCst ? 'Y' : 'N', eid); */
1089
1090             switch (eid) {
1091             case MCI_CONSTANT:
1092                 inCst = TRUE;   cflg = flg;     break;
1093             case MCI_END_CONSTANT:
1094                 /* there may be additional integral values after flag in constant */
1095                 if (inCst && MCI_GetDWord(&(data[offset]), &args)) {
1096                     *dwFlags |= cflg;
1097                 }
1098                 inCst = FALSE;  cflg = 0;
1099                 break;
1100             case MCI_RETURN:
1101                 if (offset != _offset) {
1102                     FIXME("MCI_RETURN not in first position\n");
1103                     return MCIERR_PARSER_INTERNAL;
1104                 }
1105             }
1106
1107             if (strncmpiW(args, str, len) == 0 &&
1108                 ((eid == MCI_STRING && len == 0) || args[len] == 0 || args[len] == ' ')) {
1109                 /* store good values into data[] */
1110                 args += len;
1111                 while (*args == ' ') args++;
1112                 found = TRUE;
1113
1114                 switch (eid) {
1115                 case MCI_COMMAND_HEAD:
1116                 case MCI_RETURN:
1117                 case MCI_END_COMMAND:
1118                 case MCI_END_COMMAND_LIST:
1119                 case MCI_CONSTANT:      /* done above */
1120                 case MCI_END_CONSTANT:  /* done above */
1121                     break;
1122                 case MCI_FLAG:
1123                     *dwFlags |= flg;
1124                     TRACE("flag=%08x\n", flg);
1125                     break;
1126                 case MCI_HWND:
1127                 case MCI_HPAL:
1128                 case MCI_HDC:
1129                 case MCI_INTEGER:
1130                     if (inCst) {
1131                         data[offset] |= flg;
1132                         *dwFlags |= cflg;
1133                         inCst = FALSE;
1134                         TRACE("flag=%08x constant=%08x\n", cflg, flg);
1135                     } else {
1136                         *dwFlags |= flg;
1137                         if (!MCI_GetDWord(&(data[offset]), &args)) {
1138                             return MCIERR_BAD_INTEGER;
1139                         }
1140                         TRACE("flag=%08x int=%d\n", flg, data[offset]);
1141                     }
1142                     break;
1143                 case MCI_RECT:
1144                     /* store rect in data (offset..offset+3) */
1145                     *dwFlags |= flg;
1146                     if (!MCI_GetDWord(&(data[offset+0]), &args) ||
1147                         !MCI_GetDWord(&(data[offset+1]), &args) ||
1148                         !MCI_GetDWord(&(data[offset+2]), &args) ||
1149                         !MCI_GetDWord(&(data[offset+3]), &args)) {
1150                         return MCIERR_BAD_INTEGER;
1151                     }
1152                     TRACE("flag=%08x for rectangle\n", flg);
1153                     break;
1154                 case MCI_STRING:
1155                     *dwFlags |= flg;
1156                     if ((dwRet = MCI_GetString((LPWSTR*)&data[offset], &args)))
1157                         return dwRet;
1158                     TRACE("flag=%08x string=%s\n", flg, debugstr_w(*(LPWSTR*)&data[offset]));
1159                     break;
1160                 default:        ERR("oops\n");
1161                 }
1162                 /* exit inside while loop, except if just entered in constant area definition */
1163                 if (!inCst || eid != MCI_CONSTANT) eid = MCI_END_COMMAND;
1164             } else {
1165                 /* have offset incremented if needed */
1166                 switch (eid) {
1167                 case MCI_COMMAND_HEAD:
1168                 case MCI_RETURN:
1169                 case MCI_END_COMMAND:
1170                 case MCI_END_COMMAND_LIST:
1171                 case MCI_CONSTANT:
1172                 case MCI_FLAG:                  break;
1173                 case MCI_HWND:
1174                 case MCI_HPAL:
1175                 case MCI_HDC:                   if (!inCst) offset += sizeof(HANDLE)/sizeof(DWORD); break;
1176                 case MCI_INTEGER:               if (!inCst) offset++;   break;
1177                 case MCI_END_CONSTANT:          offset++; break;
1178                 case MCI_STRING:                offset += sizeof(LPWSTR)/sizeof(DWORD); break;
1179                 case MCI_RECT:                  offset += 4; break;
1180                 default:                        ERR("oops\n");
1181                 }
1182             }
1183         } while (eid != MCI_END_COMMAND);
1184         if (!found) {
1185             WARN("Optarg %s not found\n", debugstr_w(args));
1186             return MCIERR_UNRECOGNIZED_COMMAND;
1187         }
1188         if (offset == MCI_DATA_SIZE) {
1189             FIXME("Internal data[] buffer overflow\n");
1190             return MCIERR_PARSER_INTERNAL;
1191         }
1192     }
1193     return 0;
1194 }
1195
1196 /**************************************************************************
1197  *                              MCI_HandleReturnValues  [internal]
1198  */
1199 static  DWORD   MCI_HandleReturnValues(DWORD dwRet, LPWINE_MCIDRIVER wmd, DWORD retType,
1200                                        MCI_GENERIC_PARMS *params, LPWSTR lpstrRet, UINT uRetLen)
1201 {
1202     static const WCHAR fmt_d  [] = {'%','d',0};
1203     static const WCHAR fmt_d4 [] = {'%','d',' ','%','d',' ','%','d',' ','%','d',0};
1204     static const WCHAR wszCol3[] = {'%','0','2','d',':','%','0','2','d',':','%','0','2','d',0};
1205     static const WCHAR wszCol4[] = {'%','0','2','d',':','%','0','2','d',':','%','0','2','d',':','%','0','2','d',0};
1206
1207     if (lpstrRet) {
1208         switch (retType) {
1209         case 0: /* nothing to return */
1210             break;
1211         case MCI_INTEGER:
1212         {
1213             DWORD data = *(DWORD *)(params + 1);
1214             switch (dwRet & 0xFFFF0000ul) {
1215             case 0:
1216             case MCI_INTEGER_RETURNED:
1217                 snprintfW(lpstrRet, uRetLen, fmt_d, data);
1218                 break;
1219             case MCI_RESOURCE_RETURNED:
1220                 /* return string which ID is HIWORD(data),
1221                  * string is loaded from mmsystem.dll */
1222                 LoadStringW(hWinMM32Instance, HIWORD(data), lpstrRet, uRetLen);
1223                 break;
1224             case MCI_RESOURCE_RETURNED|MCI_RESOURCE_DRIVER:
1225                 /* return string which ID is HIWORD(data),
1226                  * string is loaded from driver */
1227                 /* FIXME: this is wrong for a 16 bit handle */
1228                 LoadStringW(GetDriverModuleHandle(wmd->hDriver),
1229                             HIWORD(data), lpstrRet, uRetLen);
1230                 break;
1231             case MCI_COLONIZED3_RETURN:
1232                 snprintfW(lpstrRet, uRetLen, wszCol3,
1233                           LOBYTE(LOWORD(data)), HIBYTE(LOWORD(data)),
1234                           LOBYTE(HIWORD(data)));
1235                 break;
1236             case MCI_COLONIZED4_RETURN:
1237                 snprintfW(lpstrRet, uRetLen, wszCol4,
1238                           LOBYTE(LOWORD(data)), HIBYTE(LOWORD(data)),
1239                           LOBYTE(HIWORD(data)), HIBYTE(HIWORD(data)));
1240                 break;
1241             default:    ERR("Ooops (%04X)\n", HIWORD(dwRet));
1242             }
1243             break;
1244         }
1245 #ifdef MCI_INTEGER64
1246         case MCI_INTEGER64:
1247         {
1248             static const WCHAR fmt_ld [] = {'%','l','d',0};
1249             DWORD_PTR data = *(DWORD_PTR *)(params + 1);
1250             switch (dwRet & 0xFFFF0000ul) {
1251             case 0:
1252             case MCI_INTEGER_RETURNED:
1253                 snprintfW(lpstrRet, uRetLen, fmt_ld, data);
1254                 break;
1255             case MCI_RESOURCE_RETURNED:
1256                 /* return string which ID is HIWORD(data),
1257                  * string is loaded from mmsystem.dll */
1258                 LoadStringW(hWinMM32Instance, HIWORD(data), lpstrRet, uRetLen);
1259                 break;
1260             case MCI_RESOURCE_RETURNED|MCI_RESOURCE_DRIVER:
1261                 /* return string which ID is HIWORD(data),
1262                  * string is loaded from driver */
1263                 /* FIXME: this is wrong for a 16 bit handle */
1264                 LoadStringW(GetDriverModuleHandle(wmd->hDriver),
1265                             HIWORD(data), lpstrRet, uRetLen);
1266                 break;
1267             case MCI_COLONIZED3_RETURN:
1268                 snprintfW(lpstrRet, uRetLen, wszCol3,
1269                           LOBYTE(LOWORD(data)), HIBYTE(LOWORD(data)),
1270                           LOBYTE(HIWORD(data)));
1271                 break;
1272             case MCI_COLONIZED4_RETURN:
1273                 snprintfW(lpstrRet, uRetLen, wszCol4,
1274                           LOBYTE(LOWORD(data)), HIBYTE(LOWORD(data)),
1275                           LOBYTE(HIWORD(data)), HIBYTE(HIWORD(data)));
1276                 break;
1277             default:    ERR("Ooops (%04X)\n", HIWORD(dwRet));
1278             }
1279             break;
1280         }
1281 #endif
1282         case MCI_STRING:
1283             switch (dwRet & 0xFFFF0000ul) {
1284             case 0:
1285                 /* nothing to do data[0] == lpstrRet */
1286                 break;
1287             case MCI_INTEGER_RETURNED:
1288             {
1289                 DWORD *data = (DWORD *)(params + 1);
1290                 *data = *(LPDWORD)lpstrRet;
1291                 snprintfW(lpstrRet, uRetLen, fmt_d, *data);
1292                 break;
1293             }
1294             default:
1295                 WARN("Oooch. MCI_STRING and HIWORD(dwRet)=%04x\n", HIWORD(dwRet));
1296                 break;
1297             }
1298             break;
1299         case MCI_RECT:
1300         {
1301             DWORD *data = (DWORD *)(params + 1);
1302             if (dwRet & 0xFFFF0000ul)
1303                 WARN("Oooch. MCI_STRING and HIWORD(dwRet)=%04x\n", HIWORD(dwRet));
1304             snprintfW(lpstrRet, uRetLen, fmt_d4, data[0], data[1], data[2], data[3]);
1305             break;
1306         }
1307         default:                FIXME("Unknown MCI return type %d\n", retType);
1308         }
1309     }
1310     return LOWORD(dwRet);
1311 }
1312
1313 /**************************************************************************
1314  *                              mciSendStringW          [WINMM.@]
1315  */
1316 DWORD WINAPI mciSendStringW(LPCWSTR lpstrCommand, LPWSTR lpstrRet,
1317                             UINT uRetLen, HWND hwndCallback)
1318 {
1319     LPWSTR              verb, dev, args;
1320     LPWINE_MCIDRIVER    wmd = 0;
1321     MCIDEVICEID         uDevID, auto_open = 0;
1322     DWORD               dwFlags = 0, dwRet = 0;
1323     int                 offset = 0;
1324     DWORD               retType;
1325     LPCWSTR             lpCmd = 0;
1326     WORD                wMsg = 0;
1327     static const WCHAR  wszNew[] = {'n','e','w',0};
1328     static const WCHAR  wszSAliasS[] = {' ','a','l','i','a','s',' ',0};
1329     static const WCHAR  wszTypeS[]   = {'t','y','p','e',' ',0};
1330     union
1331     {
1332         MCI_GENERIC_PARMS  generic;
1333         MCI_OPEN_PARMSW    open;
1334         MCI_SOUND_PARMSW   sound;
1335         MCI_SYSINFO_PARMSW sysinfo;
1336         DWORD              dw[MCI_DATA_SIZE];
1337     } data;
1338
1339     TRACE("(%s, %p, %d, %p)\n", 
1340           debugstr_w(lpstrCommand), lpstrRet, uRetLen, hwndCallback);
1341     if (lpstrRet && uRetLen) *lpstrRet = '\0';
1342
1343     /* format is <command> <device> <optargs> */
1344     if (!(verb = HeapAlloc(GetProcessHeap(), 0, (strlenW(lpstrCommand)+1) * sizeof(WCHAR))))
1345         return MCIERR_OUT_OF_MEMORY;
1346     strcpyW( verb, lpstrCommand );
1347     CharLowerW(verb);
1348
1349     memset(&data, 0, sizeof(data));
1350
1351     if (!(args = strchrW(verb, ' '))) {
1352         dwRet = MCIERR_MISSING_DEVICE_NAME;
1353         goto errCleanUp;
1354     }
1355     *args++ = '\0';
1356     if ((dwRet = MCI_GetString(&dev, &args))) {
1357         goto errCleanUp;
1358     }
1359     uDevID = strcmpiW(dev, wszAll) ? 0 : MCI_ALL_DEVICE_ID;
1360
1361     /* Determine devType from open */
1362     if (!strcmpW(verb, wszOpen)) {
1363         LPWSTR  devType, tmp;
1364         WCHAR   buf[128];
1365
1366         /* case dev == 'new' has to be handled */
1367         if (!strcmpW(dev, wszNew)) {
1368             dev = 0;
1369             if ((devType = strstrW(args, wszTypeS)) != NULL) {
1370                 devType += 5;
1371                 tmp = strchrW(devType, ' ');
1372                 if (tmp) *tmp = '\0';
1373                 devType = str_dup_upper(devType);
1374                 if (tmp) *tmp = ' ';
1375                 /* dwFlags and data[2] will be correctly set in ParseOpt loop */
1376             } else {
1377                 WARN("open new requires device type\n");
1378                 dwRet = MCIERR_MISSING_DEVICE_NAME;
1379                 goto errCleanUp;
1380             }
1381             dwFlags |= MCI_OPEN_ELEMENT;
1382             data.open.lpstrElementName = &wszNull[0];
1383         } else if ((devType = strchrW(dev, '!')) != NULL) {
1384             *devType++ = '\0';
1385             tmp = devType; devType = dev; dev = tmp;
1386
1387             dwFlags |= MCI_OPEN_TYPE;
1388             data.open.lpstrDeviceType = devType;
1389             devType = str_dup_upper(devType);
1390             dwFlags |= MCI_OPEN_ELEMENT;
1391             data.open.lpstrElementName = dev;
1392         } else if (DRIVER_GetLibName(dev, wszMci, buf, sizeof(buf))) {
1393             /* this is the name of a mci driver's type */
1394             tmp = strchrW(dev, ' ');
1395             if (tmp) *tmp = '\0';
1396             data.open.lpstrDeviceType = dev;
1397             devType = str_dup_upper(dev);
1398             if (tmp) *tmp = ' ';
1399             dwFlags |= MCI_OPEN_TYPE;
1400         } else {
1401             if ((devType = strstrW(args, wszTypeS)) != NULL) {
1402                 devType += 5;
1403                 tmp = strchrW(devType, ' ');
1404                 if (tmp) *tmp = '\0';
1405                 devType = str_dup_upper(devType);
1406                 if (tmp) *tmp = ' ';
1407                 /* dwFlags and lpstrDeviceType will be correctly set in ParseOpt loop */
1408             } else {
1409                 if ((dwRet = MCI_GetDevTypeFromFileName(dev, buf, sizeof(buf))))
1410                     goto errCleanUp;
1411
1412                 devType = str_dup_upper(buf);
1413             }
1414             dwFlags |= MCI_OPEN_ELEMENT;
1415             data.open.lpstrElementName = dev;
1416         }
1417         if (MCI_ALL_DEVICE_ID == uDevID) {
1418             dwRet = MCIERR_CANNOT_USE_ALL;
1419             goto errCleanUp;
1420         }
1421         if (!strstrW(args, wszSAliasS) && !dev) {
1422             dwRet = MCIERR_NEW_REQUIRES_ALIAS;
1423             goto errCleanUp;
1424         }
1425
1426         dwRet = MCI_LoadMciDriver(devType, &wmd);
1427         if (dwRet == MCIERR_DEVICE_NOT_INSTALLED)
1428             dwRet = MCIERR_INVALID_DEVICE_NAME;
1429         HeapFree(GetProcessHeap(), 0, devType);
1430         if (dwRet)
1431             goto errCleanUp;
1432     } else if ((MCI_ALL_DEVICE_ID != uDevID) && !(wmd = MCI_GetDriver(mciGetDeviceIDW(dev)))
1433                && (lpCmd = MCI_FindCommand(MCI_GetCommandTable(0), verb))) {
1434         /* auto-open uses the core command table */
1435         switch (MCI_GetMessage(lpCmd)) {
1436         case MCI_SOUND:   /* command does not use a device name */
1437         case MCI_SYSINFO:
1438             break;
1439         case MCI_CLOSE:   /* don't auto-open for close */
1440         case MCI_BREAK:   /* no auto-open for system commands */
1441             dwRet = MCIERR_INVALID_DEVICE_NAME;
1442             goto errCleanUp;
1443             break;
1444         default:
1445             {
1446                 static const WCHAR wszOpenWait[] = {'o','p','e','n',' ','%','s',' ','w','a','i','t',0};
1447                 WCHAR   buf[138], retbuf[6];
1448                 snprintfW(buf, sizeof(buf)/sizeof(WCHAR), wszOpenWait, dev);
1449                 /* open via mciSendString handles quoting, dev!file syntax and alias creation */
1450                 if ((dwRet = mciSendStringW(buf, retbuf, sizeof(retbuf)/sizeof(WCHAR), 0)) != 0)
1451                     goto errCleanUp;
1452                 auto_open = strtoulW(retbuf, NULL, 10);
1453                 TRACE("auto-opened %u for %s\n", auto_open, debugstr_w(dev));
1454
1455                 /* FIXME: test for notify flag (how to preparse?) before opening */
1456                 wmd = MCI_GetDriver(auto_open);
1457                 if (!wmd) {
1458                     ERR("No auto-open device %u\n", auto_open);
1459                     dwRet = MCIERR_INVALID_DEVICE_ID;
1460                     goto errCleanUp;
1461                 }
1462             }
1463         }
1464     }
1465
1466     /* get the verb in the different command tables */
1467     if (wmd) {
1468         /* try the device specific command table */
1469         lpCmd = MCI_FindCommand(wmd->uSpecificCmdTable, verb);
1470         if (!lpCmd) {
1471             /* try the type specific command table */
1472             if (wmd->uTypeCmdTable == MCI_COMMAND_TABLE_NOT_LOADED)
1473                 wmd->uTypeCmdTable = MCI_GetCommandTable(wmd->wType);
1474             if (wmd->uTypeCmdTable != MCI_NO_COMMAND_TABLE)
1475                 lpCmd = MCI_FindCommand(wmd->uTypeCmdTable, verb);
1476         }
1477     }
1478     /* try core command table */
1479     if (!lpCmd) lpCmd = MCI_FindCommand(MCI_GetCommandTable(0), verb);
1480
1481     if (!lpCmd) {
1482         TRACE("Command %s not found!\n", debugstr_w(verb));
1483         dwRet = MCIERR_UNRECOGNIZED_COMMAND;
1484         goto errCleanUp;
1485     }
1486     wMsg = MCI_GetMessage(lpCmd);
1487
1488     /* set return information */
1489     offset = sizeof(data.generic);
1490     switch (retType = MCI_GetReturnType(lpCmd)) {
1491     case 0:
1492         break;
1493     case MCI_INTEGER:
1494         offset += sizeof(DWORD);
1495         break;
1496     case MCI_STRING:
1497         data.sysinfo.lpstrReturn = lpstrRet;
1498         data.sysinfo.dwRetSize = uRetLen;
1499         offset = FIELD_OFFSET( MCI_SYSINFO_PARMSW, dwNumber );
1500         break;
1501     case MCI_RECT:
1502         offset += 4 * sizeof(DWORD);
1503         break;
1504 #ifdef MCI_INTEGER64
1505     case MCI_INTEGER64:
1506         offset += sizeof(DWORD_PTR);
1507         break;
1508 #endif
1509     default:
1510         FIXME("Unknown MCI return type %d\n", retType);
1511         dwRet = MCIERR_PARSER_INTERNAL;
1512         goto errCleanUp;
1513     }
1514
1515     TRACE("verb=%s on dev=%s; offset=%d\n", 
1516           debugstr_w(verb), debugstr_w(dev), offset);
1517
1518     if ((dwRet = MCI_ParseOptArgs(data.dw, offset / sizeof(DWORD), lpCmd, args, &dwFlags)))
1519         goto errCleanUp;
1520
1521     /* set up call back */
1522     if (auto_open) {
1523         if (dwFlags & MCI_NOTIFY) {
1524             dwRet = MCIERR_NOTIFY_ON_AUTO_OPEN;
1525             goto errCleanUp;
1526         }
1527         /* FIXME: the command should get its own notification window set up and
1528          * ask for device closing while processing the notification mechanism.
1529          * hwndCallback = ...
1530          * dwFlags |= MCI_NOTIFY;
1531          * In the meantime special-case all commands but PLAY and RECORD below. */
1532     }
1533     if (dwFlags & MCI_NOTIFY) {
1534         data.generic.dwCallback = (DWORD_PTR)hwndCallback;
1535     }
1536
1537     switch (wMsg) {
1538     case MCI_OPEN:
1539         if (strcmpW(verb, wszOpen)) {
1540             FIXME("Cannot open with command %s\n", debugstr_w(verb));
1541             dwRet = MCIERR_DRIVER_INTERNAL;
1542             wMsg = 0;
1543             goto errCleanUp;
1544         }
1545         break;
1546     case MCI_SYSINFO:
1547         /* Requirements on dev depend on the flags:
1548          * alias with INSTALLNAME, name like "digitalvideo"
1549          * with QUANTITY and NAME. */
1550         {
1551             data.sysinfo.wDeviceType = MCI_ALL_DEVICE_ID;
1552             if (uDevID != MCI_ALL_DEVICE_ID) {
1553                 if (dwFlags & MCI_SYSINFO_INSTALLNAME)
1554                     wmd = MCI_GetDriver(mciGetDeviceIDW(dev));
1555                 else if (!(data.sysinfo.wDeviceType = MCI_GetDevTypeFromResource(dev))) {
1556                     dwRet = MCIERR_DEVICE_TYPE_REQUIRED;
1557                     goto errCleanUp;
1558                 }
1559             }
1560         }
1561         break;
1562     case MCI_SOUND:
1563         /* FIXME: name is optional, "sound" is a valid command.
1564          * FIXME: Parse "sound notify" as flag, not as name. */
1565         data.sound.lpstrSoundName = dev;
1566         dwFlags |= MCI_SOUND_NAME;
1567         break;
1568     }
1569
1570     TRACE("[%d, %s, %08x, %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x]\n",
1571           wmd ? wmd->wDeviceID : uDevID, MCI_MessageToString(wMsg), dwFlags,
1572           data.dw[0], data.dw[1], data.dw[2], data.dw[3], data.dw[4],
1573           data.dw[5], data.dw[6], data.dw[7], data.dw[8], data.dw[9]);
1574
1575     if (wMsg == MCI_OPEN) {
1576         if ((dwRet = MCI_FinishOpen(wmd, &data.open, dwFlags)))
1577             goto errCleanUp;
1578         /* FIXME: notification is not properly shared across two opens */
1579     } else {
1580         dwRet = MCI_SendCommand(wmd ? wmd->wDeviceID : uDevID, wMsg, dwFlags, (DWORD_PTR)&data);
1581     }
1582     TRACE("=> 1/ %x (%s)\n", dwRet, debugstr_w(lpstrRet));
1583     if (!LOWORD(dwRet)) {
1584         dwRet = MCI_HandleReturnValues(dwRet, wmd, retType, &data.generic, lpstrRet, uRetLen);
1585         TRACE("=> 2/ %x (%s)\n", dwRet, debugstr_w(lpstrRet));
1586     }
1587
1588 errCleanUp:
1589     if (auto_open) {
1590         /* PLAY and RECORD are the only known non-immediate commands */
1591         if (LOWORD(dwRet) || !(wMsg == MCI_PLAY || wMsg == MCI_RECORD))
1592             MCI_SendCommand(auto_open, MCI_CLOSE, 0, 0);
1593         else
1594             FIXME("leaking auto-open device %u\n", auto_open);
1595     }
1596     if (wMsg == MCI_OPEN && LOWORD(dwRet) && wmd)
1597         MCI_UnLoadMciDriver(wmd);
1598     HeapFree(GetProcessHeap(), 0, verb);
1599     return dwRet;
1600 }
1601
1602 /**************************************************************************
1603  *                              mciSendStringA                  [WINMM.@]
1604  */
1605 DWORD WINAPI mciSendStringA(LPCSTR lpstrCommand, LPSTR lpstrRet,
1606                             UINT uRetLen, HWND hwndCallback)
1607 {
1608     LPWSTR      lpwstrCommand;
1609     LPWSTR      lpwstrRet = NULL;
1610     UINT        ret;
1611     INT len;
1612
1613     /* FIXME: is there something to do with lpstrReturnString ? */
1614     len = MultiByteToWideChar( CP_ACP, 0, lpstrCommand, -1, NULL, 0 );
1615     lpwstrCommand = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
1616     MultiByteToWideChar( CP_ACP, 0, lpstrCommand, -1, lpwstrCommand, len );
1617     if (lpstrRet)
1618     {
1619         if (uRetLen) *lpstrRet = '\0'; /* NT-w2k3 use memset(lpstrRet, 0, uRetLen); */
1620         lpwstrRet = HeapAlloc(GetProcessHeap(), 0, uRetLen * sizeof(WCHAR));
1621         if (!lpwstrRet) {
1622             HeapFree( GetProcessHeap(), 0, lpwstrCommand );
1623             return MCIERR_OUT_OF_MEMORY;
1624         }
1625     }
1626     ret = mciSendStringW(lpwstrCommand, lpwstrRet, uRetLen, hwndCallback);
1627     if (!ret && lpwstrRet)
1628         WideCharToMultiByte( CP_ACP, 0, lpwstrRet, -1, lpstrRet, uRetLen, NULL, NULL );
1629     HeapFree(GetProcessHeap(), 0, lpwstrCommand);
1630     HeapFree(GetProcessHeap(), 0, lpwstrRet);
1631     return ret;
1632 }
1633
1634 /**************************************************************************
1635  *                              mciExecute                      [WINMM.@]
1636  */
1637 BOOL WINAPI mciExecute(LPCSTR lpstrCommand)
1638 {
1639     char        strRet[256];
1640     DWORD       ret;
1641
1642     TRACE("(%s)!\n", lpstrCommand);
1643
1644     ret = mciSendStringA(lpstrCommand, strRet, sizeof(strRet), 0);
1645     if (ret != 0) {
1646         if (!mciGetErrorStringA(ret, strRet, sizeof(strRet))) {
1647             sprintf(strRet, "Unknown MCI error (%d)", ret);
1648         }
1649         MessageBoxA(0, strRet, "Error in mciExecute()", MB_OK);
1650     }
1651     /* FIXME: what shall I return ? */
1652     return TRUE;
1653 }
1654
1655 /**************************************************************************
1656  *                      mciLoadCommandResource                  [WINMM.@]
1657  *
1658  * Strangely, this function only exists as a UNICODE one.
1659  */
1660 UINT WINAPI mciLoadCommandResource(HINSTANCE hInst, LPCWSTR resNameW, UINT type)
1661 {
1662     UINT        ret = MCI_NO_COMMAND_TABLE;
1663     HRSRC       hRsrc = 0;
1664     HGLOBAL     hMem;
1665
1666     TRACE("(%p, %s, %d)!\n", hInst, debugstr_w(resNameW), type);
1667
1668     /* if a file named "resname.mci" exits, then load resource "resname" from it
1669      * otherwise directly from driver
1670      * We don't support it (who uses this feature ?), but we check anyway
1671      */
1672     if (!type) {
1673 #if 0
1674         /* FIXME: we should put this back into order, but I never found a program
1675          * actually using this feature, so we may not need it
1676          */
1677         char            buf[128];
1678         OFSTRUCT        ofs;
1679
1680         strcat(strcpy(buf, resname), ".mci");
1681         if (OpenFile(buf, &ofs, OF_EXIST) != HFILE_ERROR) {
1682             FIXME("NIY: command table to be loaded from '%s'\n", ofs.szPathName);
1683         }
1684 #endif
1685     }
1686     if ((hRsrc = FindResourceW(hInst, resNameW, (LPWSTR)RT_RCDATA)) &&
1687         (hMem = LoadResource(hInst, hRsrc))) {
1688         ret = MCI_SetCommandTable(hMem, type);
1689         FreeResource(hMem);
1690     }
1691     else WARN("No command table found in module for %s\n", debugstr_w(resNameW));
1692
1693     TRACE("=> %04x\n", ret);
1694     return ret;
1695 }
1696
1697 /**************************************************************************
1698  *                      mciFreeCommandResource                  [WINMM.@]
1699  */
1700 BOOL WINAPI mciFreeCommandResource(UINT uTable)
1701 {
1702     TRACE("(%08x)!\n", uTable);
1703
1704     if (uTable >= MAX_MCICMDTABLE || !S_MciCmdTable[uTable].lpTable)
1705         return FALSE;
1706
1707     FreeResource(S_MciCmdTable[uTable].hMem);
1708     S_MciCmdTable[uTable].hMem = NULL;
1709     S_MciCmdTable[uTable].lpTable = NULL;
1710     HeapFree(GetProcessHeap(), 0, S_MciCmdTable[uTable].aVerbs);
1711     S_MciCmdTable[uTable].aVerbs = 0;
1712     S_MciCmdTable[uTable].nVerbs = 0;
1713     return TRUE;
1714 }
1715
1716 /**************************************************************************
1717  *                      MCI_Open                                [internal]
1718  */
1719 static  DWORD MCI_Open(DWORD dwParam, LPMCI_OPEN_PARMSW lpParms)
1720 {
1721     WCHAR                       strDevTyp[128];
1722     DWORD                       dwRet;
1723     LPWINE_MCIDRIVER            wmd = NULL;
1724
1725     TRACE("(%08X, %p)\n", dwParam, lpParms);
1726     if (lpParms == NULL) return MCIERR_NULL_PARAMETER_BLOCK;
1727
1728     /* only two low bytes are generic, the other ones are dev type specific */
1729 #define WINE_MCIDRIVER_SUPP     (0xFFFF0000|MCI_OPEN_SHAREABLE|MCI_OPEN_ELEMENT| \
1730                          MCI_OPEN_ALIAS|MCI_OPEN_TYPE|MCI_OPEN_TYPE_ID| \
1731                          MCI_NOTIFY|MCI_WAIT)
1732     if ((dwParam & ~WINE_MCIDRIVER_SUPP) != 0)
1733         FIXME("Unsupported yet dwFlags=%08X\n", dwParam & ~WINE_MCIDRIVER_SUPP);
1734 #undef WINE_MCIDRIVER_SUPP
1735
1736     strDevTyp[0] = 0;
1737
1738     if (dwParam & MCI_OPEN_TYPE) {
1739         if (dwParam & MCI_OPEN_TYPE_ID) {
1740             WORD uDevType = LOWORD(lpParms->lpstrDeviceType);
1741
1742             if (uDevType < MCI_DEVTYPE_FIRST ||
1743                 uDevType > MCI_DEVTYPE_LAST ||
1744                 !LoadStringW(hWinMM32Instance, uDevType,
1745                              strDevTyp, sizeof(strDevTyp) / sizeof(WCHAR))) {
1746                 dwRet = MCIERR_BAD_INTEGER;
1747                 goto errCleanUp;
1748             }
1749         } else {
1750             LPWSTR      ptr;
1751             if (lpParms->lpstrDeviceType == NULL) {
1752                 dwRet = MCIERR_NULL_PARAMETER_BLOCK;
1753                 goto errCleanUp;
1754             }
1755             strcpyW(strDevTyp, lpParms->lpstrDeviceType);
1756             ptr = strchrW(strDevTyp, '!');
1757             if (ptr) {
1758                 /* this behavior is not documented in windows. However, since, in
1759                  * some occasions, MCI_OPEN handling is translated by WinMM into
1760                  * a call to mciSendString("open <type>"); this code shall be correct
1761                  */
1762                 if (dwParam & MCI_OPEN_ELEMENT) {
1763                     ERR("Both MCI_OPEN_ELEMENT(%s) and %s are used\n",
1764                         debugstr_w(lpParms->lpstrElementName), 
1765                         debugstr_w(strDevTyp));
1766                     dwRet = MCIERR_UNRECOGNIZED_KEYWORD;
1767                     goto errCleanUp;
1768                 }
1769                 dwParam |= MCI_OPEN_ELEMENT;
1770                 *ptr++ = 0;
1771                 /* FIXME: not a good idea to write in user supplied buffer */
1772                 lpParms->lpstrElementName = ptr;
1773             }
1774
1775         }
1776         TRACE("devType=%s !\n", debugstr_w(strDevTyp));
1777     }
1778
1779     if (dwParam & MCI_OPEN_ELEMENT) {
1780         TRACE("lpstrElementName=%s\n", debugstr_w(lpParms->lpstrElementName));
1781
1782         if (dwParam & MCI_OPEN_ELEMENT_ID) {
1783             FIXME("Unsupported yet flag MCI_OPEN_ELEMENT_ID\n");
1784             dwRet = MCIERR_UNRECOGNIZED_KEYWORD;
1785             goto errCleanUp;
1786         }
1787
1788         if (!lpParms->lpstrElementName) {
1789             dwRet = MCIERR_NULL_PARAMETER_BLOCK;
1790             goto errCleanUp;
1791         }
1792
1793         /* type, if given as a parameter, supersedes file extension */
1794         if (!strDevTyp[0] &&
1795             MCI_GetDevTypeFromFileName(lpParms->lpstrElementName,
1796                                        strDevTyp, sizeof(strDevTyp))) {
1797             static const WCHAR wszCdAudio[] = {'C','D','A','U','D','I','O',0};
1798             if (GetDriveTypeW(lpParms->lpstrElementName) != DRIVE_CDROM) {
1799                 dwRet = MCIERR_EXTENSION_NOT_FOUND;
1800                 goto errCleanUp;
1801             }
1802             /* FIXME: this will not work if several CDROM drives are installed on the machine */
1803             strcpyW(strDevTyp, wszCdAudio);
1804         }
1805     }
1806
1807     if (strDevTyp[0] == 0) {
1808         FIXME("Couldn't load driver\n");
1809         dwRet = MCIERR_INVALID_DEVICE_NAME;
1810         goto errCleanUp;
1811     }
1812
1813     if (dwParam & MCI_OPEN_ALIAS) {
1814         TRACE("Alias=%s !\n", debugstr_w(lpParms->lpstrAlias));
1815         if (!lpParms->lpstrAlias) {
1816             dwRet = MCIERR_NULL_PARAMETER_BLOCK;
1817             goto errCleanUp;
1818         }
1819     }
1820
1821     if ((dwRet = MCI_LoadMciDriver(strDevTyp, &wmd))) {
1822         goto errCleanUp;
1823     }
1824
1825     if ((dwRet = MCI_FinishOpen(wmd, lpParms, dwParam))) {
1826         TRACE("Failed to open driver (MCI_OPEN_DRIVER) [%08x], closing\n", dwRet);
1827         /* FIXME: is dwRet the correct ret code ? */
1828         goto errCleanUp;
1829     }
1830
1831     /* only handled devices fall through */
1832     TRACE("wDevID=%04X wDeviceID=%d dwRet=%d\n", wmd->wDeviceID, lpParms->wDeviceID, dwRet);
1833     return 0;
1834
1835 errCleanUp:
1836     if (wmd) MCI_UnLoadMciDriver(wmd);
1837     return dwRet;
1838 }
1839
1840 /**************************************************************************
1841  *                      MCI_Close                               [internal]
1842  */
1843 static  DWORD MCI_Close(UINT wDevID, DWORD dwParam, LPMCI_GENERIC_PARMS lpParms)
1844 {
1845     DWORD               dwRet;
1846     LPWINE_MCIDRIVER    wmd;
1847
1848     TRACE("(%04x, %08X, %p)\n", wDevID, dwParam, lpParms);
1849
1850     /* Every device must handle MCI_NOTIFY on its own. */
1851     if ((UINT16)wDevID == (UINT16)MCI_ALL_DEVICE_ID) {
1852         while (MciDrivers) {
1853             /* Retrieve the device ID under lock, but send the message without,
1854              * the driver might be calling some winmm functions from another
1855              * thread before being fully stopped.
1856              */
1857             EnterCriticalSection(&WINMM_cs);
1858             if (!MciDrivers)
1859             {
1860                 LeaveCriticalSection(&WINMM_cs);
1861                 break;
1862             }
1863             wDevID = MciDrivers->wDeviceID;
1864             LeaveCriticalSection(&WINMM_cs);
1865             MCI_Close(wDevID, dwParam, lpParms);
1866         }
1867         return 0;
1868     }
1869
1870     if (!(wmd = MCI_GetDriver(wDevID))) {
1871         return MCIERR_INVALID_DEVICE_ID;
1872     }
1873
1874     dwRet = MCI_SendCommandFrom32(wDevID, MCI_CLOSE_DRIVER, dwParam, (DWORD_PTR)lpParms);
1875
1876     MCI_UnLoadMciDriver(wmd);
1877
1878     return dwRet;
1879 }
1880
1881 /**************************************************************************
1882  *                      MCI_WriteString                         [internal]
1883  */
1884 static DWORD MCI_WriteString(LPWSTR lpDstStr, DWORD dstSize, LPCWSTR lpSrcStr)
1885 {
1886     DWORD       ret = 0;
1887
1888     if (lpSrcStr) {
1889         if (dstSize <= strlenW(lpSrcStr)) {
1890             ret = MCIERR_PARAM_OVERFLOW;
1891         } else {
1892             strcpyW(lpDstStr, lpSrcStr);
1893         }
1894     } else {
1895         *lpDstStr = 0;
1896     }
1897     return ret;
1898 }
1899
1900 /**************************************************************************
1901  *                      MCI_Sysinfo                             [internal]
1902  */
1903 static  DWORD MCI_SysInfo(UINT uDevID, DWORD dwFlags, LPMCI_SYSINFO_PARMSW lpParms)
1904 {
1905     DWORD               ret = MCIERR_INVALID_DEVICE_ID, cnt = 0;
1906     WCHAR               buf[2048], *s, *p;
1907     LPWINE_MCIDRIVER    wmd;
1908     HKEY                hKey;
1909
1910     if (lpParms == NULL)                        return MCIERR_NULL_PARAMETER_BLOCK;
1911     if (lpParms->lpstrReturn == NULL)           return MCIERR_PARAM_OVERFLOW;
1912
1913     TRACE("(%08x, %08X, %p[num=%d, wDevTyp=%u])\n",
1914           uDevID, dwFlags, lpParms, lpParms->dwNumber, lpParms->wDeviceType);
1915     if ((WORD)MCI_ALL_DEVICE_ID == LOWORD(uDevID))
1916         uDevID = MCI_ALL_DEVICE_ID; /* Be compatible with Win9x */
1917
1918     switch (dwFlags & ~(MCI_SYSINFO_OPEN|MCI_NOTIFY|MCI_WAIT)) {
1919     case MCI_SYSINFO_QUANTITY:
1920         if (lpParms->dwRetSize < sizeof(DWORD))
1921             return MCIERR_PARAM_OVERFLOW;
1922         /* Win9x returns 0 for 0 < uDevID < (UINT16)MCI_ALL_DEVICE_ID */
1923         if (uDevID == MCI_ALL_DEVICE_ID) {
1924             /* wDeviceType == MCI_ALL_DEVICE_ID is not recognized. */
1925             if (dwFlags & MCI_SYSINFO_OPEN) {
1926                 TRACE("MCI_SYSINFO_QUANTITY: # of open MCI drivers\n");
1927                 EnterCriticalSection(&WINMM_cs);
1928                 for (wmd = MciDrivers; wmd; wmd = wmd->lpNext) {
1929                     cnt++;
1930                 }
1931                 LeaveCriticalSection(&WINMM_cs);
1932             } else {
1933                 TRACE("MCI_SYSINFO_QUANTITY: # of installed MCI drivers\n");
1934                 if (RegOpenKeyExW( HKEY_LOCAL_MACHINE, wszHklmMci,
1935                                    0, KEY_QUERY_VALUE, &hKey ) == ERROR_SUCCESS) {
1936                     RegQueryInfoKeyW( hKey, 0, 0, 0, &cnt, 0, 0, 0, 0, 0, 0, 0);
1937                     RegCloseKey( hKey );
1938                 }
1939                 if (GetPrivateProfileStringW(wszMci, 0, wszNull, buf, sizeof(buf) / sizeof(buf[0]), wszSystemIni))
1940                     for (s = buf; *s; s += strlenW(s) + 1) cnt++;
1941             }
1942         } else {
1943             if (dwFlags & MCI_SYSINFO_OPEN) {
1944                 TRACE("MCI_SYSINFO_QUANTITY: # of open MCI drivers of type %d\n", lpParms->wDeviceType);
1945                 EnterCriticalSection(&WINMM_cs);
1946                 for (wmd = MciDrivers; wmd; wmd = wmd->lpNext) {
1947                     if (wmd->wType == lpParms->wDeviceType) cnt++;
1948                 }
1949                 LeaveCriticalSection(&WINMM_cs);
1950             } else {
1951                 TRACE("MCI_SYSINFO_QUANTITY: # of installed MCI drivers of type %d\n", lpParms->wDeviceType);
1952                 FIXME("Don't know how to get # of MCI devices of a given type\n");
1953                 /* name = LoadStringW(hWinMM32Instance, LOWORD(lpParms->wDeviceType))
1954                  * then lookup registry and/or system.ini for name, ignoring digits suffix */
1955                 switch (LOWORD(lpParms->wDeviceType)) {
1956                 case MCI_DEVTYPE_CD_AUDIO:
1957                 case MCI_DEVTYPE_WAVEFORM_AUDIO:
1958                 case MCI_DEVTYPE_SEQUENCER:
1959                     cnt = 1;
1960                     break;
1961                 default: /* "digitalvideo" gets 0 because it's not in the registry */
1962                     cnt = 0;
1963                 }
1964             }
1965         }
1966         *(DWORD*)lpParms->lpstrReturn = cnt;
1967         TRACE("(%d) => '%d'\n", lpParms->dwNumber, *(DWORD*)lpParms->lpstrReturn);
1968         ret = MCI_INTEGER_RETURNED;
1969         /* return ret; Only Win9x sends a notification in this case. */
1970         break;
1971     case MCI_SYSINFO_INSTALLNAME:
1972         TRACE("MCI_SYSINFO_INSTALLNAME\n");
1973         if ((wmd = MCI_GetDriver(uDevID))) {
1974             ret = MCI_WriteString(lpParms->lpstrReturn, lpParms->dwRetSize,
1975                                   wmd->lpstrDeviceType);
1976         } else {
1977             ret = (uDevID == MCI_ALL_DEVICE_ID)
1978                 ? MCIERR_CANNOT_USE_ALL : MCIERR_INVALID_DEVICE_NAME;
1979         }
1980         TRACE("(%d) => %s\n", lpParms->dwNumber, debugstr_w(lpParms->lpstrReturn));
1981         break;
1982     case MCI_SYSINFO_NAME:
1983         s = NULL;
1984         if (dwFlags & MCI_SYSINFO_OPEN) {
1985             /* Win9x returns 0 for 0 < uDevID < (UINT16)MCI_ALL_DEVICE_ID */
1986             TRACE("MCI_SYSINFO_NAME: nth alias of type %d\n",
1987                   uDevID == MCI_ALL_DEVICE_ID ? MCI_ALL_DEVICE_ID : lpParms->wDeviceType);
1988             EnterCriticalSection(&WINMM_cs);
1989             for (wmd = MciDrivers; wmd; wmd = wmd->lpNext) {
1990                 /* wDeviceType == MCI_ALL_DEVICE_ID is not recognized. */
1991                 if (uDevID == MCI_ALL_DEVICE_ID ||
1992                     lpParms->wDeviceType == wmd->wType) {
1993                     cnt++;
1994                     if (cnt == lpParms->dwNumber) {
1995                         s = wmd->lpstrAlias;
1996                         break;
1997                     }
1998                 }
1999             }
2000             LeaveCriticalSection(&WINMM_cs);
2001             ret = s ? MCI_WriteString(lpParms->lpstrReturn, lpParms->dwRetSize, s) : MCIERR_OUTOFRANGE;
2002         } else if (MCI_ALL_DEVICE_ID == uDevID) {
2003             TRACE("MCI_SYSINFO_NAME: device #%d\n", lpParms->dwNumber);
2004             if (RegOpenKeyExW( HKEY_LOCAL_MACHINE, wszHklmMci, 0, 
2005                                KEY_QUERY_VALUE, &hKey ) == ERROR_SUCCESS) {
2006                 if (RegQueryInfoKeyW( hKey, 0, 0, 0, &cnt, 
2007                                       0, 0, 0, 0, 0, 0, 0) == ERROR_SUCCESS && 
2008                     lpParms->dwNumber <= cnt) {
2009                     DWORD bufLen = sizeof(buf)/sizeof(buf[0]);
2010                     if (RegEnumKeyExW(hKey, lpParms->dwNumber - 1, 
2011                                       buf, &bufLen, 0, 0, 0, 0) == ERROR_SUCCESS)
2012                         s = buf;
2013                 }
2014                 RegCloseKey( hKey );
2015             }
2016             if (!s) {
2017                 if (GetPrivateProfileStringW(wszMci, 0, wszNull, buf, sizeof(buf) / sizeof(buf[0]), wszSystemIni)) {
2018                     for (p = buf; *p; p += strlenW(p) + 1, cnt++) {
2019                         TRACE("%d: %s\n", cnt, debugstr_w(p));
2020                         if (cnt == lpParms->dwNumber - 1) {
2021                             s = p;
2022                             break;
2023                         }
2024                     }
2025                 }
2026             }
2027             ret = s ? MCI_WriteString(lpParms->lpstrReturn, lpParms->dwRetSize, s) : MCIERR_OUTOFRANGE;
2028         } else {
2029             FIXME("MCI_SYSINFO_NAME: nth device of type %d\n", lpParms->wDeviceType);
2030             /* Cheating: what is asked for is the nth device from the registry. */
2031             if (1 != lpParms->dwNumber || /* Handle only one of each kind. */
2032                 lpParms->wDeviceType < MCI_DEVTYPE_FIRST || lpParms->wDeviceType > MCI_DEVTYPE_LAST)
2033                 ret = MCIERR_OUTOFRANGE;
2034             else {
2035                 LoadStringW(hWinMM32Instance, LOWORD(lpParms->wDeviceType),
2036                             lpParms->lpstrReturn, lpParms->dwRetSize);
2037                 ret = 0;
2038             }
2039         }
2040         TRACE("(%d) => %s\n", lpParms->dwNumber, debugstr_w(lpParms->lpstrReturn));
2041         break;
2042     default:
2043         TRACE("Unsupported flag value=%08x\n", dwFlags);
2044         ret = MCIERR_UNRECOGNIZED_KEYWORD;
2045     }
2046     if ((dwFlags & MCI_NOTIFY) && HRESULT_CODE(ret)==0)
2047         mciDriverNotify((HWND)lpParms->dwCallback, uDevID, MCI_NOTIFY_SUCCESSFUL);
2048     return ret;
2049 }
2050
2051 /**************************************************************************
2052  *                      MCI_Break                               [internal]
2053  */
2054 static  DWORD MCI_Break(UINT wDevID, DWORD dwFlags, LPMCI_BREAK_PARMS lpParms)
2055 {
2056     DWORD       dwRet = 0;
2057
2058     if (lpParms == NULL)        return MCIERR_NULL_PARAMETER_BLOCK;
2059     FIXME("(%04x) vkey %04X stub\n", dwFlags, lpParms->nVirtKey);
2060
2061     if (MMSYSERR_NOERROR==dwRet && (dwFlags & MCI_NOTIFY))
2062         mciDriverNotify((HWND)lpParms->dwCallback, wDevID, MCI_NOTIFY_SUCCESSFUL);
2063     return dwRet;
2064 }
2065
2066 /**************************************************************************
2067  *                      MCI_Sound                               [internal]
2068  */
2069 static  DWORD MCI_Sound(UINT wDevID, DWORD dwFlags, LPMCI_SOUND_PARMSW lpParms)
2070 {
2071     DWORD       dwRet;
2072
2073     if (dwFlags & MCI_SOUND_NAME) {
2074         if (lpParms == NULL)    return MCIERR_NULL_PARAMETER_BLOCK;
2075         else dwRet = PlaySoundW(lpParms->lpstrSoundName, NULL,
2076                                 SND_ALIAS    | (dwFlags & MCI_WAIT ? SND_SYNC : SND_ASYNC))
2077                 ? 0 : MCIERR_HARDWARE;
2078     } else   dwRet = PlaySoundW((LPCWSTR)SND_ALIAS_SYSTEMDEFAULT, NULL,
2079                                 SND_ALIAS_ID | (dwFlags & MCI_WAIT ? SND_SYNC : SND_ASYNC))
2080                 ? 0 : MCIERR_HARDWARE;
2081
2082     if (!dwRet && lpParms && (dwFlags & MCI_NOTIFY))
2083         mciDriverNotify((HWND)lpParms->dwCallback, wDevID, MCI_NOTIFY_SUCCESSFUL);
2084     return dwRet;
2085 }
2086
2087 /**************************************************************************
2088  *                      MCI_SendCommand                         [internal]
2089  */
2090 DWORD   MCI_SendCommand(UINT wDevID, UINT16 wMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2)
2091 {
2092     DWORD               dwRet = MCIERR_UNRECOGNIZED_COMMAND;
2093
2094     switch (wMsg) {
2095     case MCI_OPEN:
2096         dwRet = MCI_Open(dwParam1, (LPMCI_OPEN_PARMSW)dwParam2);
2097         break;
2098     case MCI_CLOSE:
2099         dwRet = MCI_Close(wDevID, dwParam1, (LPMCI_GENERIC_PARMS)dwParam2);
2100         break;
2101     case MCI_SYSINFO:
2102         dwRet = MCI_SysInfo(wDevID, dwParam1, (LPMCI_SYSINFO_PARMSW)dwParam2);
2103         break;
2104     case MCI_BREAK:
2105         dwRet = MCI_Break(wDevID, dwParam1, (LPMCI_BREAK_PARMS)dwParam2);
2106         break;
2107     case MCI_SOUND:
2108         dwRet = MCI_Sound(wDevID, dwParam1, (LPMCI_SOUND_PARMSW)dwParam2);
2109         break;
2110     default:
2111       if ((UINT16)wDevID == (UINT16)MCI_ALL_DEVICE_ID) {
2112             FIXME("unhandled MCI_ALL_DEVICE_ID\n");
2113             dwRet = MCIERR_CANNOT_USE_ALL;
2114         } else {
2115             dwRet = MCI_SendCommandFrom32(wDevID, wMsg, dwParam1, dwParam2);
2116         }
2117         break;
2118     }
2119     return dwRet;
2120 }
2121
2122 /**************************************************************************
2123  *                              MCI_CleanUp                     [internal]
2124  *
2125  * Some MCI commands need to be cleaned-up (when not called from
2126  * mciSendString), because MCI drivers return extra information for string
2127  * transformation. This function gets rid of them.
2128  */
2129 static LRESULT  MCI_CleanUp(LRESULT dwRet, UINT wMsg, DWORD_PTR dwParam2)
2130 {
2131     if (LOWORD(dwRet))
2132         return LOWORD(dwRet);
2133
2134     switch (wMsg) {
2135     case MCI_GETDEVCAPS:
2136         switch (dwRet & 0xFFFF0000ul) {
2137         case 0:
2138         case MCI_COLONIZED3_RETURN:
2139         case MCI_COLONIZED4_RETURN:
2140         case MCI_INTEGER_RETURNED:
2141             /* nothing to do */
2142             break;
2143         case MCI_RESOURCE_RETURNED:
2144         case MCI_RESOURCE_RETURNED|MCI_RESOURCE_DRIVER:
2145             {
2146                 LPMCI_GETDEVCAPS_PARMS  lmgp;
2147
2148                 lmgp = (LPMCI_GETDEVCAPS_PARMS)dwParam2;
2149                 TRACE("Changing %08x to %08x\n", lmgp->dwReturn, LOWORD(lmgp->dwReturn));
2150                 lmgp->dwReturn = LOWORD(lmgp->dwReturn);
2151             }
2152             break;
2153         default:
2154             FIXME("Unsupported value for hiword (%04x) returned by DriverProc(%s)\n",
2155                   HIWORD(dwRet), MCI_MessageToString(wMsg));
2156         }
2157         break;
2158     case MCI_STATUS:
2159         switch (dwRet & 0xFFFF0000ul) {
2160         case 0:
2161         case MCI_COLONIZED3_RETURN:
2162         case MCI_COLONIZED4_RETURN:
2163         case MCI_INTEGER_RETURNED:
2164             /* nothing to do */
2165             break;
2166         case MCI_RESOURCE_RETURNED:
2167         case MCI_RESOURCE_RETURNED|MCI_RESOURCE_DRIVER:
2168             {
2169                 LPMCI_STATUS_PARMS      lsp;
2170
2171                 lsp = (LPMCI_STATUS_PARMS)dwParam2;
2172                 TRACE("Changing %08lx to %08x\n", lsp->dwReturn, LOWORD(lsp->dwReturn));
2173                 lsp->dwReturn = LOWORD(lsp->dwReturn);
2174             }
2175             break;
2176         default:
2177             FIXME("Unsupported value for hiword (%04x) returned by DriverProc(%s)\n",
2178                   HIWORD(dwRet), MCI_MessageToString(wMsg));
2179         }
2180         break;
2181     case MCI_SYSINFO:
2182         switch (dwRet & 0xFFFF0000ul) {
2183         case 0:
2184         case MCI_INTEGER_RETURNED:
2185             /* nothing to do */
2186             break;
2187         default:
2188             FIXME("Unsupported value for hiword (%04x)\n", HIWORD(dwRet));
2189         }
2190         break;
2191     default:
2192         if (HIWORD(dwRet)) {
2193             FIXME("Got non null hiword for dwRet=0x%08lx for command %s\n",
2194                   dwRet, MCI_MessageToString(wMsg));
2195         }
2196         break;
2197     }
2198     return LOWORD(dwRet);
2199 }
2200
2201 /**************************************************************************
2202  *                              mciGetErrorStringW              [WINMM.@]
2203  */
2204 BOOL WINAPI mciGetErrorStringW(MCIERROR wError, LPWSTR lpstrBuffer, UINT uLength)
2205 {
2206     BOOL                ret = FALSE;
2207
2208     if (lpstrBuffer != NULL && uLength > 0 &&
2209         wError >= MCIERR_BASE && wError <= MCIERR_CUSTOM_DRIVER_BASE) {
2210
2211         if (LoadStringW(hWinMM32Instance, wError, lpstrBuffer, uLength) > 0) {
2212             ret = TRUE;
2213         }
2214     }
2215     return ret;
2216 }
2217
2218 /**************************************************************************
2219  *                              mciGetErrorStringA              [WINMM.@]
2220  */
2221 BOOL WINAPI mciGetErrorStringA(MCIERROR dwError, LPSTR lpstrBuffer, UINT uLength)
2222 {
2223     BOOL                ret = FALSE;
2224
2225     if (lpstrBuffer != NULL && uLength > 0 &&
2226         dwError >= MCIERR_BASE && dwError <= MCIERR_CUSTOM_DRIVER_BASE) {
2227
2228         if (LoadStringA(hWinMM32Instance, dwError, lpstrBuffer, uLength) > 0) {
2229             ret = TRUE;
2230         }
2231     }
2232     return ret;
2233 }
2234
2235 /**************************************************************************
2236  *                      mciDriverNotify                         [WINMM.@]
2237  */
2238 BOOL WINAPI mciDriverNotify(HWND hWndCallBack, MCIDEVICEID wDevID, UINT wStatus)
2239 {
2240     TRACE("(%p, %04x, %04X)\n", hWndCallBack, wDevID, wStatus);
2241
2242     return PostMessageW(hWndCallBack, MM_MCINOTIFY, wStatus, wDevID);
2243 }
2244
2245 /**************************************************************************
2246  *                      mciGetDriverData                        [WINMM.@]
2247  */
2248 DWORD_PTR WINAPI mciGetDriverData(MCIDEVICEID uDeviceID)
2249 {
2250     LPWINE_MCIDRIVER    wmd;
2251
2252     TRACE("(%04x)\n", uDeviceID);
2253
2254     wmd = MCI_GetDriver(uDeviceID);
2255
2256     if (!wmd) {
2257         WARN("Bad uDeviceID\n");
2258         return 0L;
2259     }
2260
2261     return wmd->dwPrivate;
2262 }
2263
2264 /**************************************************************************
2265  *                      mciSetDriverData                        [WINMM.@]
2266  */
2267 BOOL WINAPI mciSetDriverData(MCIDEVICEID uDeviceID, DWORD_PTR data)
2268 {
2269     LPWINE_MCIDRIVER    wmd;
2270
2271     TRACE("(%04x, %08lx)\n", uDeviceID, data);
2272
2273     wmd = MCI_GetDriver(uDeviceID);
2274
2275     if (!wmd) {
2276         WARN("Bad uDeviceID\n");
2277         return FALSE;
2278     }
2279
2280     wmd->dwPrivate = data;
2281     return TRUE;
2282 }
2283
2284 /**************************************************************************
2285  *                              mciSendCommandW                 [WINMM.@]
2286  *
2287  */
2288 DWORD WINAPI mciSendCommandW(MCIDEVICEID wDevID, UINT wMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2)
2289 {
2290     DWORD       dwRet;
2291
2292     TRACE("(%08x, %s, %08lx, %08lx)\n",
2293           wDevID, MCI_MessageToString(wMsg), dwParam1, dwParam2);
2294
2295     dwRet = MCI_SendCommand(wDevID, wMsg, dwParam1, dwParam2);
2296     dwRet = MCI_CleanUp(dwRet, wMsg, dwParam2);
2297     TRACE("=> %08x\n", dwRet);
2298     return dwRet;
2299 }
2300
2301 /**************************************************************************
2302  *                              mciSendCommandA                 [WINMM.@]
2303  */
2304 DWORD WINAPI mciSendCommandA(MCIDEVICEID wDevID, UINT wMsg, DWORD_PTR dwParam1, DWORD_PTR dwParam2)
2305 {
2306     DWORD ret;
2307     int mapped;
2308
2309     TRACE("(%08x, %s, %08lx, %08lx)\n",
2310           wDevID, MCI_MessageToString(wMsg), dwParam1, dwParam2);
2311
2312     mapped = MCI_MapMsgAtoW(wMsg, dwParam1, &dwParam2);
2313     if (mapped == -1)
2314     {
2315         FIXME("message %04x mapping failed\n", wMsg);
2316         return MCIERR_OUT_OF_MEMORY;
2317     }
2318     ret = mciSendCommandW(wDevID, wMsg, dwParam1, dwParam2);
2319     if (mapped)
2320         MCI_UnmapMsgAtoW(wMsg, dwParam1, dwParam2, ret);
2321     return ret;
2322 }
2323
2324 /**************************************************************************
2325  *                              mciGetDeviceIDA                 [WINMM.@]
2326  */
2327 UINT WINAPI mciGetDeviceIDA(LPCSTR lpstrName)
2328 {
2329     LPWSTR w = MCI_strdupAtoW(lpstrName);
2330     UINT ret = MCIERR_OUT_OF_MEMORY;
2331
2332     if (w)
2333     {
2334         ret = mciGetDeviceIDW(w);
2335         HeapFree(GetProcessHeap(), 0, w);
2336     }
2337     return ret;
2338 }
2339
2340 /**************************************************************************
2341  *                              mciGetDeviceIDW                 [WINMM.@]
2342  */
2343 UINT WINAPI mciGetDeviceIDW(LPCWSTR lpwstrName)
2344 {
2345     return MCI_GetDriverFromString(lpwstrName); 
2346 }
2347
2348 /**************************************************************************
2349  *                              MCI_DefYieldProc                [internal]
2350  */
2351 static UINT WINAPI MCI_DefYieldProc(MCIDEVICEID wDevID, DWORD data)
2352 {
2353     INT16       ret;
2354     MSG         msg;
2355
2356     TRACE("(0x%04x, 0x%08x)\n", wDevID, data);
2357
2358     if ((HIWORD(data) != 0 && HWND_16(GetActiveWindow()) != HIWORD(data)) ||
2359         (GetAsyncKeyState(LOWORD(data)) & 1) == 0) {
2360         PeekMessageW(&msg, 0, 0, 0, PM_REMOVE | PM_QS_SENDMESSAGE);
2361         ret = 0;
2362     } else {
2363         msg.hwnd = HWND_32(HIWORD(data));
2364         while (!PeekMessageW(&msg, msg.hwnd, WM_KEYFIRST, WM_KEYLAST, PM_REMOVE));
2365         ret = -1;
2366     }
2367     return ret;
2368 }
2369
2370 /**************************************************************************
2371  *                              mciSetYieldProc                 [WINMM.@]
2372  */
2373 BOOL WINAPI mciSetYieldProc(MCIDEVICEID uDeviceID, YIELDPROC fpYieldProc, DWORD dwYieldData)
2374 {
2375     LPWINE_MCIDRIVER    wmd;
2376
2377     TRACE("(%u, %p, %08x)\n", uDeviceID, fpYieldProc, dwYieldData);
2378
2379     if (!(wmd = MCI_GetDriver(uDeviceID))) {
2380         WARN("Bad uDeviceID\n");
2381         return FALSE;
2382     }
2383
2384     wmd->lpfnYieldProc = fpYieldProc;
2385     wmd->dwYieldData   = dwYieldData;
2386
2387     return TRUE;
2388 }
2389
2390 /**************************************************************************
2391  *                              mciGetDeviceIDFromElementIDA    [WINMM.@]
2392  */
2393 UINT WINAPI mciGetDeviceIDFromElementIDA(DWORD dwElementID, LPCSTR lpstrType)
2394 {
2395     LPWSTR w = MCI_strdupAtoW(lpstrType);
2396     UINT ret = 0;
2397
2398     if (w)
2399     {
2400         ret = mciGetDeviceIDFromElementIDW(dwElementID, w);
2401         HeapFree(GetProcessHeap(), 0, w);
2402     }
2403     return ret;
2404 }
2405
2406 /**************************************************************************
2407  *                              mciGetDeviceIDFromElementIDW    [WINMM.@]
2408  */
2409 UINT WINAPI mciGetDeviceIDFromElementIDW(DWORD dwElementID, LPCWSTR lpstrType)
2410 {
2411     /* FIXME: that's rather strange, there is no
2412      * mciGetDeviceIDFromElementID32A in winmm.spec
2413      */
2414     FIXME("(%u, %s) stub\n", dwElementID, debugstr_w(lpstrType));
2415     return 0;
2416 }
2417
2418 /**************************************************************************
2419  *                              mciGetYieldProc                 [WINMM.@]
2420  */
2421 YIELDPROC WINAPI mciGetYieldProc(MCIDEVICEID uDeviceID, DWORD* lpdwYieldData)
2422 {
2423     LPWINE_MCIDRIVER    wmd;
2424
2425     TRACE("(%u, %p)\n", uDeviceID, lpdwYieldData);
2426
2427     if (!(wmd = MCI_GetDriver(uDeviceID))) {
2428         WARN("Bad uDeviceID\n");
2429         return NULL;
2430     }
2431     if (!wmd->lpfnYieldProc) {
2432         WARN("No proc set\n");
2433         return NULL;
2434     }
2435     if (lpdwYieldData) *lpdwYieldData = wmd->dwYieldData;
2436     return wmd->lpfnYieldProc;
2437 }
2438
2439 /**************************************************************************
2440  *                              mciGetCreatorTask               [WINMM.@]
2441  */
2442 HTASK WINAPI mciGetCreatorTask(MCIDEVICEID uDeviceID)
2443 {
2444     LPWINE_MCIDRIVER    wmd;
2445     HTASK ret = 0;
2446
2447     if ((wmd = MCI_GetDriver(uDeviceID))) ret = (HTASK)(DWORD_PTR)wmd->CreatorThread;
2448
2449     TRACE("(%u) => %p\n", uDeviceID, ret);
2450     return ret;
2451 }
2452
2453 /**************************************************************************
2454  *                      mciDriverYield                          [WINMM.@]
2455  */
2456 UINT WINAPI mciDriverYield(MCIDEVICEID uDeviceID)
2457 {
2458     LPWINE_MCIDRIVER    wmd;
2459     UINT                ret = 0;
2460
2461     TRACE("(%04x)\n", uDeviceID);
2462
2463     if (!(wmd = MCI_GetDriver(uDeviceID)) || !wmd->lpfnYieldProc) {
2464         MSG msg;
2465         PeekMessageW(&msg, 0, 0, 0, PM_REMOVE | PM_QS_SENDMESSAGE);
2466     } else {
2467         ret = wmd->lpfnYieldProc(uDeviceID, wmd->dwYieldData);
2468     }
2469
2470     return ret;
2471 }