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
4cc3705f
Commit
4cc3705f
authored
Nov 19, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Nov 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Use BOOL type where appropriate.
parent
c8a42b47
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
image.c
dlls/gdiplus/image.c
+4
-4
No files found.
dlls/gdiplus/image.c
View file @
4cc3705f
...
...
@@ -1122,12 +1122,12 @@ GpStatus WINGDIPAPI GdipBitmapLockBits(GpBitmap* bitmap, GDIPCONST GpRect* rect,
if
(
flags
&
ImageLockModeRead
)
{
static
int
fixme
=
0
;
static
BOOL
fixme
=
FALSE
;
if
(
!
fixme
&&
(
PIXELFORMATBPP
(
bitmap
->
format
)
*
act_rect
.
X
)
%
8
!=
0
)
{
FIXME
(
"Cannot copy rows that don't start at a whole byte.
\n
"
);
fixme
=
1
;
fixme
=
TRUE
;
}
stat
=
convert_pixels
(
act_rect
.
Width
,
act_rect
.
Height
,
...
...
@@ -1169,7 +1169,7 @@ GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap,
BitmapData
*
lockeddata
)
{
GpStatus
stat
;
static
int
fixme
=
0
;
static
BOOL
fixme
=
FALSE
;
TRACE
(
"(%p,%p)
\n
"
,
bitmap
,
lockeddata
);
...
...
@@ -1199,7 +1199,7 @@ GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap,
if
(
!
fixme
&&
(
PIXELFORMATBPP
(
bitmap
->
format
)
*
bitmap
->
lockx
)
%
8
!=
0
)
{
FIXME
(
"Cannot copy rows that don't start at a whole byte.
\n
"
);
fixme
=
1
;
fixme
=
TRUE
;
}
stat
=
convert_pixels
(
lockeddata
->
Width
,
lockeddata
->
Height
,
...
...
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