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
1cdb06c6
Commit
1cdb06c6
authored
Jul 27, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Jul 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Remove unused parameter from _read_bitmap().
parent
d585d422
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
imagelist.c
dlls/comctl32/imagelist.c
+3
-3
No files found.
dlls/comctl32/imagelist.c
View file @
1cdb06c6
...
...
@@ -1899,7 +1899,7 @@ static int DIB_GetDIBImageBytes( int width, int height, int depth )
/* helper for ImageList_Read, see comments below */
static
BOOL
_read_bitmap
(
H
IMAGELIST
himl
,
H
DC
hdcIml
,
LPSTREAM
pstm
)
static
BOOL
_read_bitmap
(
HDC
hdcIml
,
LPSTREAM
pstm
)
{
BITMAPFILEHEADER
bmfh
;
int
bitsperpixel
,
palspace
;
...
...
@@ -2006,14 +2006,14 @@ HIMAGELIST WINAPI ImageList_Read (LPSTREAM pstm)
if
(
!
himl
)
return
NULL
;
if
(
!
_read_bitmap
(
himl
,
himl
->
hdcImage
,
pstm
))
if
(
!
_read_bitmap
(
himl
->
hdcImage
,
pstm
))
{
WARN
(
"failed to read bitmap from stream
\n
"
);
return
NULL
;
}
if
(
ilHead
.
flags
&
ILC_MASK
)
{
if
(
!
_read_bitmap
(
himl
,
himl
->
hdcMask
,
pstm
))
if
(
!
_read_bitmap
(
himl
->
hdcMask
,
pstm
))
{
WARN
(
"failed to read mask bitmap from stream
\n
"
);
return
NULL
;
...
...
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