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