2 * DirectShow MCI Driver
4 * Copyright 2009 Christian Costa
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/debug.h"
27 #include "mciqtz_private.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(mciqtz
);
33 static DWORD
MCIQTZ_mciClose(UINT
, DWORD
, LPMCI_GENERIC_PARMS
);
34 static DWORD
MCIQTZ_mciStop(UINT
, DWORD
, LPMCI_GENERIC_PARMS
);
36 /*======================================================================*
37 * MCI QTZ implementation *
38 *======================================================================*/
40 HINSTANCE MCIQTZ_hInstance
= 0;
42 /***********************************************************************
45 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID fImpLoad
)
48 case DLL_PROCESS_ATTACH
:
49 DisableThreadLibraryCalls(hInstDLL
);
50 MCIQTZ_hInstance
= hInstDLL
;
56 /**************************************************************************
57 * MCIQTZ_mciGetOpenDev [internal]
59 static WINE_MCIQTZ
* MCIQTZ_mciGetOpenDev(UINT wDevID
)
61 WINE_MCIQTZ
* wma
= (WINE_MCIQTZ
*)mciGetDriverData(wDevID
);
64 WARN("Invalid wDevID=%u\n", wDevID
);
70 /**************************************************************************
71 * MCIQTZ_drvOpen [internal]
73 static DWORD
MCIQTZ_drvOpen(LPCWSTR str
, LPMCI_OPEN_DRIVER_PARMSW modp
)
77 TRACE("(%s, %p)\n", debugstr_w(str
), modp
);
79 /* session instance */
83 wma
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(WINE_MCIQTZ
));
87 wma
->wDevID
= modp
->wDeviceID
;
88 mciSetDriverData(wma
->wDevID
, (DWORD_PTR
)wma
);
90 return modp
->wDeviceID
;
93 /**************************************************************************
94 * MCIQTZ_drvClose [internal]
96 static DWORD
MCIQTZ_drvClose(DWORD dwDevID
)
100 TRACE("(%04x)\n", dwDevID
);
102 wma
= MCIQTZ_mciGetOpenDev(dwDevID
);
105 /* finish all outstanding things */
106 MCIQTZ_mciClose(dwDevID
, MCI_WAIT
, NULL
);
108 mciSetDriverData(dwDevID
, 0);
109 HeapFree(GetProcessHeap(), 0, wma
);
113 return (dwDevID
== 0xFFFFFFFF) ? 1 : 0;
116 /**************************************************************************
117 * MCIQTZ_drvConfigure [internal]
119 static DWORD
MCIQTZ_drvConfigure(DWORD dwDevID
)
123 TRACE("(%04x)\n", dwDevID
);
125 wma
= MCIQTZ_mciGetOpenDev(dwDevID
);
129 MCIQTZ_mciStop(dwDevID
, MCI_WAIT
, NULL
);
131 MessageBoxA(0, "Sample QTZ Wine Driver !", "MM-Wine Driver", MB_OK
);
136 /***************************************************************************
137 * MCIQTZ_mciOpen [internal]
139 static DWORD
MCIQTZ_mciOpen(UINT wDevID
, DWORD dwFlags
,
140 LPMCI_DGV_OPEN_PARMSW lpOpenParms
)
145 TRACE("(%04x, %08X, %p)\n", wDevID
, dwFlags
, lpOpenParms
);
148 return MCIERR_NULL_PARAMETER_BLOCK
;
150 wma
= MCIQTZ_mciGetOpenDev(wDevID
);
152 return MCIERR_INVALID_DEVICE_ID
;
154 MCIQTZ_mciStop(wDevID
, MCI_WAIT
, NULL
);
156 CoInitializeEx(NULL
, COINIT_MULTITHREADED
);
158 hr
= CoCreateInstance(&CLSID_FilterGraph
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IGraphBuilder
, (LPVOID
*)&wma
->pgraph
);
160 TRACE("Cannot create filtergraph (hr = %x)\n", hr
);
164 hr
= IGraphBuilder_QueryInterface(wma
->pgraph
, &IID_IMediaControl
, (LPVOID
*)&wma
->pmctrl
);
166 TRACE("Cannot get IMediaControl interface (hr = %x)\n", hr
);
170 if (!(dwFlags
& MCI_OPEN_ELEMENT
) || (dwFlags
& MCI_OPEN_ELEMENT_ID
)) {
171 TRACE("Wrong dwFlags %x\n", dwFlags
);
175 if (!lpOpenParms
->lpstrElementName
|| !lpOpenParms
->lpstrElementName
[0]) {
176 TRACE("Invalid filename specified\n");
180 TRACE("Open file %s\n", debugstr_w(lpOpenParms
->lpstrElementName
));
182 hr
= IGraphBuilder_RenderFile(wma
->pgraph
, lpOpenParms
->lpstrElementName
, NULL
);
184 TRACE("Cannot render file (hr = %x)\n", hr
);
194 IGraphBuilder_Release(wma
->pgraph
);
197 IMediaControl_Release(wma
->pmctrl
);
202 return MCIERR_INTERNAL
;
205 /***************************************************************************
206 * MCIQTZ_mciClose [internal]
208 static DWORD
MCIQTZ_mciClose(UINT wDevID
, DWORD dwFlags
, LPMCI_GENERIC_PARMS lpParms
)
212 TRACE("(%04x, %08X, %p)\n", wDevID
, dwFlags
, lpParms
);
214 wma
= MCIQTZ_mciGetOpenDev(wDevID
);
216 return MCIERR_INVALID_DEVICE_ID
;
218 MCIQTZ_mciStop(wDevID
, MCI_WAIT
, NULL
);
221 IGraphBuilder_Release(wma
->pgraph
);
222 IMediaControl_Release(wma
->pmctrl
);
230 /***************************************************************************
231 * MCIQTZ_mciPlay [internal]
233 static DWORD
MCIQTZ_mciPlay(UINT wDevID
, DWORD dwFlags
, LPMCI_PLAY_PARMS lpParms
)
238 TRACE("(%04x, %08X, %p)\n", wDevID
, dwFlags
, lpParms
);
241 return MCIERR_NULL_PARAMETER_BLOCK
;
243 wma
= MCIQTZ_mciGetOpenDev(wDevID
);
245 return MCIERR_INVALID_DEVICE_ID
;
247 hr
= IMediaControl_Run(wma
->pmctrl
);
249 TRACE("Cannot run filtergraph (hr = %x)\n", hr
);
250 return MCIERR_INTERNAL
;
258 /***************************************************************************
259 * MCIQTZ_mciSeek [internal]
261 static DWORD
MCIQTZ_mciSeek(UINT wDevID
, DWORD dwFlags
, LPMCI_SEEK_PARMS lpParms
)
265 IMediaPosition
* pmpos
;
268 TRACE("(%04x, %08X, %p)\n", wDevID
, dwFlags
, lpParms
);
271 return MCIERR_NULL_PARAMETER_BLOCK
;
273 wma
= MCIQTZ_mciGetOpenDev(wDevID
);
275 return MCIERR_INVALID_DEVICE_ID
;
277 MCIQTZ_mciStop(wDevID
, MCI_WAIT
, NULL
);
279 if (dwFlags
& MCI_SEEK_TO_START
) {
281 } else if (dwFlags
& MCI_SEEK_TO_END
) {
282 FIXME("MCI_SEEK_TO_END not implemented yet\n");
283 return MCIERR_INTERNAL
;
284 } else if (dwFlags
& MCI_TO
) {
285 FIXME("MCI_TO not implemented yet\n");
286 return MCIERR_INTERNAL
;
288 WARN("dwFlag doesn't tell where to seek to...\n");
289 return MCIERR_MISSING_PARAMETER
;
292 hr
= IGraphBuilder_QueryInterface(wma
->pgraph
, &IID_IMediaPosition
, (LPVOID
*)&pmpos
);
294 FIXME("Cannot get IMediaPostion interface (hr = %x)\n", hr
);
295 return MCIERR_INTERNAL
;
298 hr
= IMediaPosition_put_CurrentPosition(pmpos
, newpos
);
300 FIXME("Cannot set position (hr = %x)\n", hr
);
301 IMediaPosition_Release(pmpos
);
302 return MCIERR_INTERNAL
;
305 IMediaPosition_Release(pmpos
);
307 if (dwFlags
& MCI_NOTIFY
)
308 mciDriverNotify(HWND_32(LOWORD(lpParms
->dwCallback
)), wDevID
, MCI_NOTIFY_SUCCESSFUL
);
313 /***************************************************************************
314 * MCIQTZ_mciStop [internal]
316 static DWORD
MCIQTZ_mciStop(UINT wDevID
, DWORD dwFlags
, LPMCI_GENERIC_PARMS lpParms
)
321 TRACE("(%04x, %08X, %p)\n", wDevID
, dwFlags
, lpParms
);
323 wma
= MCIQTZ_mciGetOpenDev(wDevID
);
325 return MCIERR_INVALID_DEVICE_ID
;
330 hr
= IMediaControl_Stop(wma
->pmctrl
);
332 TRACE("Cannot stop filtergraph (hr = %x)\n", hr
);
333 return MCIERR_INTERNAL
;
336 wma
->started
= FALSE
;
341 /***************************************************************************
342 * MCIQTZ_mciGetDevCaps [internal]
344 static DWORD
MCIQTZ_mciGetDevCaps(UINT wDevID
, DWORD dwFlags
, LPMCI_GETDEVCAPS_PARMS lpParms
)
348 TRACE("(%04x, %08X, %p)\n", wDevID
, dwFlags
, lpParms
);
351 return MCIERR_NULL_PARAMETER_BLOCK
;
353 wma
= MCIQTZ_mciGetOpenDev(wDevID
);
355 return MCIERR_INVALID_DEVICE_ID
;
357 if (!(dwFlags
& MCI_STATUS_ITEM
)) {
358 WARN("No capability item specified\n");
359 return MCIERR_UNRECOGNIZED_COMMAND
;
362 switch (lpParms
->dwItem
) {
363 case MCI_GETDEVCAPS_CAN_RECORD
:
364 lpParms
->dwReturn
= MAKEMCIRESOURCE(FALSE
, MCI_FALSE
);
365 TRACE("MCI_GETDEVCAPS_CAN_RECORD = %08x\n", lpParms
->dwReturn
);
367 case MCI_GETDEVCAPS_HAS_AUDIO
:
368 lpParms
->dwReturn
= MAKEMCIRESOURCE(TRUE
, MCI_TRUE
);
369 TRACE("MCI_GETDEVCAPS_HAS_AUDIO = %08x\n", lpParms
->dwReturn
);
371 case MCI_GETDEVCAPS_HAS_VIDEO
:
372 lpParms
->dwReturn
= MAKEMCIRESOURCE(TRUE
, MCI_TRUE
);
373 TRACE("MCI_GETDEVCAPS_HAS_VIDEO = %08x\n", lpParms
->dwReturn
);
375 case MCI_GETDEVCAPS_DEVICE_TYPE
:
376 lpParms
->dwReturn
= MAKEMCIRESOURCE(MCI_DEVTYPE_DIGITAL_VIDEO
, MCI_DEVTYPE_DIGITAL_VIDEO
);
377 TRACE("MCI_GETDEVCAPS_DEVICE_TYPE = %08x\n", lpParms
->dwReturn
);
379 case MCI_GETDEVCAPS_USES_FILES
:
380 lpParms
->dwReturn
= MAKEMCIRESOURCE(TRUE
, MCI_TRUE
);
381 TRACE("MCI_GETDEVCAPS_USES_FILES = %08x\n", lpParms
->dwReturn
);
383 case MCI_GETDEVCAPS_COMPOUND_DEVICE
:
384 lpParms
->dwReturn
= MAKEMCIRESOURCE(TRUE
, MCI_TRUE
);
385 TRACE("MCI_GETDEVCAPS_COMPOUND_DEVICE = %08x\n", lpParms
->dwReturn
);
387 case MCI_GETDEVCAPS_CAN_EJECT
:
388 lpParms
->dwReturn
= MAKEMCIRESOURCE(FALSE
, MCI_FALSE
);
389 TRACE("MCI_GETDEVCAPS_EJECT = %08x\n", lpParms
->dwReturn
);
391 case MCI_GETDEVCAPS_CAN_PLAY
:
392 lpParms
->dwReturn
= MAKEMCIRESOURCE(TRUE
, MCI_TRUE
);
393 TRACE("MCI_GETDEVCAPS_CAN_PLAY = %08x\n", lpParms
->dwReturn
);
395 case MCI_GETDEVCAPS_CAN_SAVE
:
396 lpParms
->dwReturn
= MAKEMCIRESOURCE(FALSE
, MCI_FALSE
);
397 TRACE("MCI_GETDEVCAPS_CAN_SAVE = %08x\n", lpParms
->dwReturn
);
400 ERR("Unknown capability %08x\n", lpParms
->dwItem
);
401 return MCIERR_UNRECOGNIZED_COMMAND
;
404 return MCI_RESOURCE_RETURNED
;
407 /***************************************************************************
408 * MCIQTZ_mciSet [internal]
410 static DWORD
MCIQTZ_mciSet(UINT wDevID
, DWORD dwFlags
, LPMCI_DGV_SET_PARMS lpParms
)
414 TRACE("(%04x, %08X, %p)\n", wDevID
, dwFlags
, lpParms
);
417 return MCIERR_NULL_PARAMETER_BLOCK
;
419 wma
= MCIQTZ_mciGetOpenDev(wDevID
);
421 return MCIERR_INVALID_DEVICE_ID
;
423 if (dwFlags
& MCI_SET_TIME_FORMAT
) {
424 switch (lpParms
->dwTimeFormat
) {
425 case MCI_FORMAT_MILLISECONDS
:
426 TRACE("MCI_SET_TIME_FORMAT = MCI_FORMAT_MILLISECONDS\n");
427 wma
->time_format
= MCI_FORMAT_MILLISECONDS
;
429 case MCI_FORMAT_FRAMES
:
430 TRACE("MCI_SET_TIME_FORMAT = MCI_FORMAT_FRAMES\n");
431 wma
->time_format
= MCI_FORMAT_FRAMES
;
434 WARN("Bad time format %u\n", lpParms
->dwTimeFormat
);
435 return MCIERR_BAD_TIME_FORMAT
;
439 if (dwFlags
& MCI_SET_DOOR_OPEN
)
440 FIXME("MCI_SET_DOOR_OPEN not implemented yet\n");
441 if (dwFlags
& MCI_SET_DOOR_CLOSED
)
442 FIXME("MCI_SET_DOOR_CLOSED not implemented yet\n");
443 if (dwFlags
& MCI_SET_AUDIO
)
444 FIXME("MCI_SET_AUDIO not implemented yet\n");
445 if (dwFlags
& MCI_SET_VIDEO
)
446 FIXME("MCI_SET_VIDEO not implemented yet\n");
447 if (dwFlags
& MCI_SET_ON
)
448 FIXME("MCI_SET_ON not implemented yet\n");
449 if (dwFlags
& MCI_SET_OFF
)
450 FIXME("MCI_SET_OFF not implemented yet\n");
451 if (dwFlags
& MCI_SET_AUDIO_LEFT
)
452 FIXME("MCI_SET_AUDIO_LEFT not implemented yet\n");
453 if (dwFlags
& MCI_SET_AUDIO_RIGHT
)
454 FIXME("MCI_SET_AUDIO_RIGHT not implemented yet\n");
456 if (dwFlags
& ~0x7f03 /* All MCI_SET flags mask */)
457 ERR("Unknown flags %08x\n", dwFlags
& ~0x7f03);
462 /***************************************************************************
463 * MCIQTZ_mciStatus [internal]
465 static DWORD
MCIQTZ_mciStatus(UINT wDevID
, DWORD dwFlags
, LPMCI_DGV_STATUS_PARMSW lpParms
)
469 TRACE("(%04x, %08X, %p)\n", wDevID
, dwFlags
, lpParms
);
472 return MCIERR_NULL_PARAMETER_BLOCK
;
474 wma
= MCIQTZ_mciGetOpenDev(wDevID
);
476 return MCIERR_INVALID_DEVICE_ID
;
478 if (!(dwFlags
& MCI_STATUS_ITEM
)) {
479 WARN("No status item specified\n");
480 return MCIERR_UNRECOGNIZED_COMMAND
;
483 switch (lpParms
->dwItem
) {
484 case MCI_STATUS_LENGTH
:
485 FIXME("MCI_STATUS_LENGTH not implemented yet\n");
486 return MCIERR_UNRECOGNIZED_COMMAND
;
487 case MCI_STATUS_POSITION
:
491 IMediaPosition
* pmpos
;
493 hr
= IGraphBuilder_QueryInterface(wma
->pgraph
, &IID_IMediaPosition
, (LPVOID
*)&pmpos
);
495 FIXME("Cannot get IMediaPostion interface (hr = %x)\n", hr
);
496 return MCIERR_INTERNAL
;
499 hr
= IMediaPosition_get_CurrentPosition(pmpos
, &curpos
);
501 FIXME("Cannot get position (hr = %x)\n", hr
);
502 IMediaPosition_Release(pmpos
);
503 return MCIERR_INTERNAL
;
506 IMediaPosition_Release(pmpos
);
507 lpParms
->dwReturn
= curpos
/ 10000;
511 case MCI_STATUS_NUMBER_OF_TRACKS
:
512 FIXME("MCI_STATUS_NUMBER_OF_TRACKS not implemented yet\n");
513 return MCIERR_UNRECOGNIZED_COMMAND
;
514 case MCI_STATUS_MODE
:
515 FIXME("MCI_STATUS_MODE not implemented yet\n");
516 return MCIERR_UNRECOGNIZED_COMMAND
;
517 case MCI_STATUS_MEDIA_PRESENT
:
518 FIXME("MCI_STATUS_MEDIA_PRESENT not implemented yet\n");
519 return MCIERR_UNRECOGNIZED_COMMAND
;
520 case MCI_STATUS_TIME_FORMAT
:
521 FIXME("MCI_STATUS_TIME_FORMAT not implemented yet\n");
522 return MCIERR_UNRECOGNIZED_COMMAND
;
523 case MCI_STATUS_READY
:
524 FIXME("MCI_STATUS_READY not implemented yet\n");
525 return MCIERR_UNRECOGNIZED_COMMAND
;
526 case MCI_STATUS_CURRENT_TRACK
:
527 FIXME("MCI_STATUS_CURRENT_TRACK not implemented yet\n");
528 return MCIERR_UNRECOGNIZED_COMMAND
;
530 FIXME("Unknown command %08X\n", lpParms
->dwItem
);
531 return MCIERR_UNRECOGNIZED_COMMAND
;
534 if (dwFlags
& MCI_NOTIFY
)
535 mciDriverNotify(HWND_32(LOWORD(lpParms
->dwCallback
)), wDevID
, MCI_NOTIFY_SUCCESSFUL
);
540 /***************************************************************************
541 * MCIQTZ_mciWhere [internal]
543 static DWORD
MCIQTZ_mciWhere(UINT wDevID
, DWORD dwFlags
, LPMCI_DGV_RECT_PARMS lpParms
)
546 IVideoWindow
* pVideoWindow
;
551 TRACE("(%04x, %08X, %p)\n", wDevID
, dwFlags
, lpParms
);
554 return MCIERR_NULL_PARAMETER_BLOCK
;
556 wma
= MCIQTZ_mciGetOpenDev(wDevID
);
558 return MCIERR_INVALID_DEVICE_ID
;
560 /* Find if there is a video stream and get the display window */
561 hr
= IGraphBuilder_QueryInterface(wma
->pgraph
, &IID_IVideoWindow
, (LPVOID
*)&pVideoWindow
);
563 ERR("Cannot get IVideoWindow interface (hr = %x)\n", hr
);
564 return MCIERR_INTERNAL
;
567 hr
= IVideoWindow_get_Owner(pVideoWindow
, (OAHWND
*)&hWnd
);
568 IVideoWindow_Release(pVideoWindow
);
570 TRACE("No video stream, returning no window error\n");
571 return MCIERR_NO_WINDOW
;
574 if (dwFlags
& MCI_DGV_WHERE_SOURCE
) {
575 if (dwFlags
& MCI_DGV_WHERE_MAX
)
576 FIXME("MCI_DGV_WHERE_SOURCE_MAX not supported yet\n");
578 FIXME("MCI_DGV_WHERE_SOURCE not supported yet\n");
579 return MCIERR_UNRECOGNIZED_COMMAND
;
581 if (dwFlags
& MCI_DGV_WHERE_DESTINATION
) {
582 if (dwFlags
& MCI_DGV_WHERE_MAX
) {
583 GetClientRect(hWnd
, &rc
);
584 TRACE("MCI_DGV_WHERE_DESTINATION_MAX %s\n", wine_dbgstr_rect(&rc
));
586 FIXME("MCI_DGV_WHERE_DESTINATION not supported yet\n");
587 return MCIERR_UNRECOGNIZED_COMMAND
;
590 if (dwFlags
& MCI_DGV_WHERE_FRAME
) {
591 if (dwFlags
& MCI_DGV_WHERE_MAX
)
592 FIXME("MCI_DGV_WHERE_FRAME_MAX not supported yet\n");
594 FIXME("MCI_DGV_WHERE_FRAME not supported yet\n");
595 return MCIERR_UNRECOGNIZED_COMMAND
;
597 if (dwFlags
& MCI_DGV_WHERE_VIDEO
) {
598 if (dwFlags
& MCI_DGV_WHERE_MAX
)
599 FIXME("MCI_DGV_WHERE_VIDEO_MAX not supported yet\n");
601 FIXME("MCI_DGV_WHERE_VIDEO not supported yet\n");
602 return MCIERR_UNRECOGNIZED_COMMAND
;
604 if (dwFlags
& MCI_DGV_WHERE_WINDOW
) {
605 if (dwFlags
& MCI_DGV_WHERE_MAX
) {
606 GetWindowRect(GetDesktopWindow(), &rc
);
607 TRACE("MCI_DGV_WHERE_WINDOW_MAX %s\n", wine_dbgstr_rect(&rc
));
609 GetWindowRect(hWnd
, &rc
);
610 TRACE("MCI_DGV_WHERE_WINDOW %s\n", wine_dbgstr_rect(&rc
));
614 /* In MCI, RECT structure is used differently: rc.right = width & rc.bottom = height
615 * So convert the normal RECT into a MCI RECT before returning */
616 lpParms
->rc
.left
= rc
.left
;
617 lpParms
->rc
.top
= rc
.right
;
618 lpParms
->rc
.right
= rc
.right
- rc
.left
;
619 lpParms
->rc
.bottom
= rc
.bottom
- rc
.top
;
624 /***************************************************************************
625 * MCIQTZ_mciSetAudio [internal]
627 static DWORD
MCIQTZ_mciSetAudio(UINT wDevID
, DWORD dwFlags
, LPMCI_DGV_SETAUDIO_PARMSW lpParms
)
631 FIXME("(%04x, %08x, %p) : stub\n", wDevID
, dwFlags
, lpParms
);
634 return MCIERR_NULL_PARAMETER_BLOCK
;
636 wma
= MCIQTZ_mciGetOpenDev(wDevID
);
638 return MCIERR_INVALID_DEVICE_ID
;
640 MCIQTZ_mciStop(wDevID
, MCI_WAIT
, NULL
);
645 /*======================================================================*
646 * MCI QTZ entry points *
647 *======================================================================*/
649 /**************************************************************************
650 * DriverProc (MCIQTZ.@)
652 LRESULT CALLBACK
MCIQTZ_DriverProc(DWORD_PTR dwDevID
, HDRVR hDriv
, UINT wMsg
,
653 LPARAM dwParam1
, LPARAM dwParam2
)
655 TRACE("(%08lX, %p, %08X, %08lX, %08lX)\n",
656 dwDevID
, hDriv
, wMsg
, dwParam1
, dwParam2
);
659 case DRV_LOAD
: return 1;
660 case DRV_FREE
: return 1;
661 case DRV_OPEN
: return MCIQTZ_drvOpen((LPCWSTR
)dwParam1
, (LPMCI_OPEN_DRIVER_PARMSW
)dwParam2
);
662 case DRV_CLOSE
: return MCIQTZ_drvClose(dwDevID
);
663 case DRV_ENABLE
: return 1;
664 case DRV_DISABLE
: return 1;
665 case DRV_QUERYCONFIGURE
: return 1;
666 case DRV_CONFIGURE
: return MCIQTZ_drvConfigure(dwDevID
);
667 case DRV_INSTALL
: return DRVCNF_RESTART
;
668 case DRV_REMOVE
: return DRVCNF_RESTART
;
671 /* session instance */
672 if (dwDevID
== 0xFFFFFFFF)
676 case MCI_OPEN_DRIVER
: return MCIQTZ_mciOpen (dwDevID
, dwParam1
, (LPMCI_DGV_OPEN_PARMSW
) dwParam2
);
677 case MCI_CLOSE_DRIVER
: return MCIQTZ_mciClose (dwDevID
, dwParam1
, (LPMCI_GENERIC_PARMS
) dwParam2
);
678 case MCI_PLAY
: return MCIQTZ_mciPlay (dwDevID
, dwParam1
, (LPMCI_PLAY_PARMS
) dwParam2
);
679 case MCI_SEEK
: return MCIQTZ_mciSeek (dwDevID
, dwParam1
, (LPMCI_SEEK_PARMS
) dwParam2
);
680 case MCI_STOP
: return MCIQTZ_mciStop (dwDevID
, dwParam1
, (LPMCI_GENERIC_PARMS
) dwParam2
);
681 case MCI_GETDEVCAPS
: return MCIQTZ_mciGetDevCaps(dwDevID
, dwParam1
, (LPMCI_GETDEVCAPS_PARMS
) dwParam2
);
682 case MCI_SET
: return MCIQTZ_mciSet (dwDevID
, dwParam1
, (LPMCI_DGV_SET_PARMS
) dwParam2
);
683 case MCI_STATUS
: return MCIQTZ_mciStatus (dwDevID
, dwParam1
, (LPMCI_DGV_STATUS_PARMSW
) dwParam2
);
684 case MCI_WHERE
: return MCIQTZ_mciWhere (dwDevID
, dwParam1
, (LPMCI_DGV_RECT_PARMS
) dwParam2
);
685 /* Digital Video specific */
686 case MCI_SETAUDIO
: return MCIQTZ_mciSetAudio (dwDevID
, dwParam1
, (LPMCI_DGV_SETAUDIO_PARMSW
) dwParam2
);
705 /* Digital Video specific */
716 FIXME("Unimplemented command [%08X]\n", wMsg
);
720 WARN("Unsupported command [%08X]\n", wMsg
);
724 FIXME("Shouldn't receive a MCI_OPEN or CLOSE message\n");
727 TRACE("Sending msg [%08X] to default driver proc\n", wMsg
);
728 return DefDriverProc(dwDevID
, hDriv
, wMsg
, dwParam1
, dwParam2
);
731 return MCIERR_UNRECOGNIZED_COMMAND
;