Commit beeac415 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winmm: Use the new 16=>32 thunks for Aux driver type.

parent 60b652cd
......@@ -443,6 +443,11 @@ DWORD WINAPI mixerMessage16(HMIXER16 hmix, UINT16 uMsg, DWORD dwParam1,
return mixerMessage(HMIXER_32(hmix), uMsg, dwParam1, dwParam2);
}
/* ###################################################
* # AUX #
* ###################################################
*/
/**************************************************************************
* auxGetNumDevs [MMSYSTEM.350]
*/
......@@ -451,11 +456,6 @@ UINT16 WINAPI auxGetNumDevs16(void)
return auxGetNumDevs();
}
/* ###################################################
* # AUX #
* ###################################################
*/
/**************************************************************************
* auxGetDevCaps [MMSYSTEM.351]
*/
......@@ -509,7 +509,7 @@ DWORD WINAPI auxOutMessage16(UINT16 uDeviceID, UINT16 uMessage, DWORD dw1, DWORD
/* no argument conversion needed */
break;
case AUXDM_GETVOLUME:
return auxGetVolume16(uDeviceID, MapSL(dw1));
return auxGetVolume(uDeviceID, MapSL(dw1));
case AUXDM_GETDEVCAPS:
return auxGetDevCaps16(uDeviceID, MapSL(dw1), dw2);
default:
......
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