[PATCH 02/16] [WinMM, MMSystem]: use the new 16=>32 thunks for Aux driver type

Eric Pouech eric.pouech at orange.fr
Thu Oct 22 15:09:46 CDT 2009




A+
---

 0 files changed, 0 insertions(+), 0 deletions(-)


diff --git a/dlls/winmm/mmsystem.c b/dlls/winmm/mmsystem.c
index 4007d46..1549553 100644
--- a/dlls/winmm/mmsystem.c
+++ b/dlls/winmm/mmsystem.c
@@ -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:






More information about the wine-patches mailing list