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
8402f7a4
Commit
8402f7a4
authored
Dec 28, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Dec 31, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvfw32: Remove unneeded casts.
parent
48017908
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
msvideo16.c
dlls/msvfw32/msvideo16.c
+2
-2
msvideo_main.c
dlls/msvfw32/msvideo_main.c
+1
-1
No files found.
dlls/msvfw32/msvideo16.c
View file @
8402f7a4
...
...
@@ -693,7 +693,7 @@ static LRESULT CALLBACK IC_Callback3216(HIC hic, HDRVR hdrv, UINT msg, DWORD l
args
[
2
]
=
LOWORD
(
lp1
);
args
[
1
]
=
HIWORD
(
lp2
);
args
[
0
]
=
LOWORD
(
lp2
);
WOWCallback16Ex
(
(
DWORD
)
whic
->
driverproc16
,
WCB16_PASCAL
,
sizeof
(
args
),
args
,
&
ret
);
WOWCallback16Ex
(
whic
->
driverproc16
,
WCB16_PASCAL
,
sizeof
(
args
),
args
,
&
ret
);
switch
(
msg
)
{
...
...
@@ -745,7 +745,7 @@ LRESULT VFWAPI ICSendMessage16(HIC16 hic, UINT16 msg, DWORD lParam1, DWORD lPara
args
[
2
]
=
LOWORD
(
lParam1
);
args
[
1
]
=
HIWORD
(
lParam2
);
args
[
0
]
=
LOWORD
(
lParam2
);
WOWCallback16Ex
(
(
DWORD
)
whic
->
driverproc16
,
WCB16_PASCAL
,
sizeof
(
args
),
args
,
&
result
);
WOWCallback16Ex
(
whic
->
driverproc16
,
WCB16_PASCAL
,
sizeof
(
args
),
args
,
&
result
);
ret
=
result
;
}
else
...
...
dlls/msvfw32/msvideo_main.c
View file @
8402f7a4
...
...
@@ -327,7 +327,7 @@ HIC VFWAPI ICOpen(DWORD fccType, DWORD fccHandler, UINT wMode)
if
(
driver
&&
driver
->
proc
)
/* The driver has been registered at runtime with its driverproc */
return
MSVIDEO_OpenFunction
(
fccType
,
fccHandler
,
wMode
,
(
DRIVERPROC
)
driver
->
proc
,
(
DWORD
)
NULL
);
return
MSVIDEO_OpenFunction
(
fccType
,
fccHandler
,
wMode
,
driver
->
proc
,
0
);
/* Well, lParam2 is in fact a LPVIDEO_OPEN_PARMS, but it has the
* same layout as ICOPEN
...
...
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