Commit 4bd87b9d authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

wineesd.drv: Add the missing calls to ESD_WaveClose/ESD_WaveInit.

parent 6450b76a
......@@ -1561,7 +1561,9 @@ DWORD WINAPI ESD_wodMessage(UINT wDevID, UINT wMsg, DWORD dwUser,
switch (wMsg) {
case DRVM_INIT:
return ESD_WaveInit();
case DRVM_EXIT:
return ESD_WaveClose();
case DRVM_ENABLE:
case DRVM_DISABLE:
/* FIXME: Pretend this is supported */
......@@ -2073,7 +2075,9 @@ DWORD WINAPI ESD_widMessage(UINT wDevID, UINT wMsg, DWORD dwUser,
wDevID, wMsg, dwUser, dwParam1, dwParam2);
switch (wMsg) {
case DRVM_INIT:
return ESD_WaveInit();
case DRVM_EXIT:
return ESD_WaveClose();
case DRVM_ENABLE:
case DRVM_DISABLE:
/* FIXME: Pretend this is supported */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment