Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
beeac415
Commit
beeac415
authored
Oct 22, 2009
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Use the new 16=>32 thunks for Aux driver type.
parent
60b652cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
mmsystem.c
dlls/winmm/mmsystem.c
+6
-6
No files found.
dlls/winmm/mmsystem.c
View file @
beeac415
...
...
@@ -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
auxGetVolume
16
(
uDeviceID
,
MapSL
(
dw1
));
return
auxGetVolume
(
uDeviceID
,
MapSL
(
dw1
));
case
AUXDM_GETDEVCAPS
:
return
auxGetDevCaps16
(
uDeviceID
,
MapSL
(
dw1
),
dw2
);
default:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment