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
0497aa64
Commit
0497aa64
authored
Dec 11, 1999
by
Bradley Baetz
Committed by
Alexandre Julliard
Dec 11, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The wavemap driver wasn't passing the callback type to the
DriverCallback routine correctly.
parent
05d006be
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
mmsystem.c
dlls/winmm/mmsystem.c
+2
-0
wavemap.c
dlls/winmm/wavemap/wavemap.c
+1
-1
No files found.
dlls/winmm/mmsystem.c
View file @
0497aa64
...
...
@@ -620,6 +620,8 @@ BOOL WINAPI DriverCallback(DWORD dwCallBack, UINT uFlags, HDRVR hDev,
switch
(
uFlags
&
DCB_TYPEMASK
)
{
case
DCB_NULL
:
TRACE
(
"Null !
\n
"
);
if
(
dwCallBack
)
WARN
(
"uFlags=%04X has null DCB value, but dwCallBack=%08lX is not null !
\n
"
);
break
;
case
DCB_WINDOW
:
TRACE
(
"Window(%04lX) handle=%04X!
\n
"
,
dwCallBack
,
hDev
);
...
...
dlls/winmm/wavemap/wavemap.c
View file @
0497aa64
...
...
@@ -71,7 +71,7 @@ static void CALLBACK WAVEMAP_DstCallback(HDRVR hDev, UINT uMsg, DWORD dwInstance
ERR
(
"Unknown msg %u
\n
"
,
uMsg
);
}
DriverCallback
(
wom
->
dwCallback
,
wom
->
dwFlags
,
hDev
,
uMsg
,
DriverCallback
(
wom
->
dwCallback
,
HIWORD
(
wom
->
dwFlags
)
,
hDev
,
uMsg
,
wom
->
dwClientInstance
,
dwParam1
,
dwParam2
);
}
...
...
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