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
0f806dfd
Commit
0f806dfd
authored
Jan 12, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvfw32: Remove unneeded casts.
parent
d9cd7502
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
drawdib.c
dlls/msvfw32/drawdib.c
+3
-3
msvideo_main.c
dlls/msvfw32/msvideo_main.c
+3
-3
No files found.
dlls/msvfw32/drawdib.c
View file @
0f806dfd
...
...
@@ -183,7 +183,7 @@ BOOL VFWAPI DrawDibBegin(HDRAWDIB hdd,
WINE_HDD
*
whdd
;
TRACE
(
"(%p,%p,%d,%d,%p,%d,%d,0x%08x)
\n
"
,
hdd
,
hdc
,
dxDst
,
dyDst
,
lpbi
,
dxSrc
,
dySrc
,
(
DWORD
)
wFlags
);
hdd
,
hdc
,
dxDst
,
dyDst
,
lpbi
,
dxSrc
,
dySrc
,
wFlags
);
TRACE
(
"lpbi: %d,%d/%d,%d,%d,%d,%d,%d,%d,%d,%d
\n
"
,
lpbi
->
biSize
,
lpbi
->
biWidth
,
lpbi
->
biHeight
,
lpbi
->
biPlanes
,
...
...
@@ -305,7 +305,7 @@ BOOL VFWAPI DrawDibDraw(HDRAWDIB hdd, HDC hdc,
BOOL
ret
=
TRUE
;
TRACE
(
"(%p,%p,%d,%d,%d,%d,%p,%p,%d,%d,%d,%d,0x%08x)
\n
"
,
hdd
,
hdc
,
xDst
,
yDst
,
dxDst
,
dyDst
,
lpbi
,
lpBits
,
xSrc
,
ySrc
,
dxSrc
,
dySrc
,
(
DWORD
)
wFlags
);
hdd
,
hdc
,
xDst
,
yDst
,
dxDst
,
dyDst
,
lpbi
,
lpBits
,
xSrc
,
ySrc
,
dxSrc
,
dySrc
,
wFlags
);
whdd
=
MSVIDEO_GetHddPtr
(
hdd
);
if
(
!
whdd
)
return
FALSE
;
...
...
@@ -313,7 +313,7 @@ BOOL VFWAPI DrawDibDraw(HDRAWDIB hdd, HDC hdc,
TRACE
(
"whdd=%p
\n
"
,
whdd
);
if
(
wFlags
&
~
(
DDF_SAME_HDC
|
DDF_SAME_DRAW
|
DDF_NOTKEYFRAME
|
DDF_UPDATE
|
DDF_DONTDRAW
|
DDF_BACKGROUNDPAL
))
FIXME
(
"wFlags == 0x%08x not handled
\n
"
,
(
DWORD
)
wFlags
);
FIXME
(
"wFlags == 0x%08x not handled
\n
"
,
wFlags
);
if
(
!
lpBits
)
{
...
...
dlls/msvfw32/msvideo_main.c
View file @
0f806dfd
...
...
@@ -87,7 +87,7 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
{
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinst
);
MSVFW32_hModule
=
(
HMODULE
)
hinst
;
MSVFW32_hModule
=
hinst
;
break
;
}
return
TRUE
;
...
...
@@ -1088,7 +1088,7 @@ LRESULT MSVIDEO_SendMessage(WINE_HIC* whic, UINT msg, DWORD_PTR lParam1, DWORD_P
XX
(
ICM_DECOMPRESSEX_END
);
XX
(
ICM_SET_STATUS_PROC
);
default:
FIXME
(
"(%p,0x%08x,0x%08lx,0x%08lx) unknown message
\n
"
,
whic
,
(
DWORD
)
msg
,
lParam1
,
lParam2
);
FIXME
(
"(%p,0x%08x,0x%08lx,0x%08lx) unknown message
\n
"
,
whic
,
msg
,
lParam1
,
lParam2
);
}
#undef XX
...
...
@@ -1360,7 +1360,7 @@ err:
GlobalFree
(
hMem
);
hMem
=
NULL
;
}
return
(
HANDLE
)
hMem
;
return
hMem
;
}
/***********************************************************************
...
...
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