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
4e276bf4
Commit
4e276bf4
authored
Oct 05, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvideo: Pass the correct function address for 32->16 callbacks.
parent
b1c235d3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
msvideo16.c
dlls/msvideo.dll16/msvideo16.c
+2
-2
No files found.
dlls/msvideo.dll16/msvideo16.c
View file @
4e276bf4
...
...
@@ -670,7 +670,7 @@ BOOL16 VFWAPI ICInfo16(DWORD fccType, DWORD fccHandler, ICINFO16 *lpicinfo)
*
*
*/
static
LRESULT
CALLBACK
IC_Callback3216
(
DWORD
pfn16
,
HIC
hic
,
HDRVR
hdrv
,
UINT
msg
,
DWORD
lp1
,
DWORD
lp2
)
static
LRESULT
CALLBACK
IC_Callback3216
(
DWORD
pfn16
,
HIC
hic
,
HDRVR
hdrv
,
UINT
msg
,
LPARAM
lp1
,
LPARAM
lp2
)
{
WORD
args
[
8
];
DWORD
ret
=
0
;
...
...
@@ -781,7 +781,7 @@ HIC16 VFWAPI ICOpenFunction16(DWORD fccType, DWORD fccHandler, UINT16 wMode, FAR
LeaveCriticalSection
(
&
msvideo_cs
);
return
0
;
}
if
((
hic32
=
ICOpenFunction
(
fccType
,
fccHandler
,
wMode
,
IC_Callback3216
)))
if
((
hic32
=
ICOpenFunction
(
fccType
,
fccHandler
,
wMode
,
(
DRIVERPROC
)
thunk
)))
thunk
->
hIC16
=
HIC_16
(
hic32
);
else
thunk
->
pfn16
=
0
;
...
...
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