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
f620b663
Commit
f620b663
authored
Jun 18, 2008
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub for GdipFlush.
parent
d4ae6fa1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
1 deletion
+23
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
graphics.c
dlls/gdiplus/graphics.c
+13
-0
gdiplusenums.h
include/gdiplusenums.h
+7
-0
gdiplusflat.h
include/gdiplusflat.h
+1
-0
gdiplusgpstubs.h
include/gdiplusgpstubs.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
f620b663
...
...
@@ -234,7 +234,7 @@
@ stdcall GdipFindFirstImageItem(ptr ptr)
@ stub GdipFindNextImageItem
@ stub GdipFlattenPath
@ st
ub GdipFlush
@ st
dcall GdipFlush(long)
@ stdcall GdipFree(ptr)
@ stub GdipGetAdjustableArrowCapFillState
@ stub GdipGetAdjustableArrowCapHeight
...
...
dlls/gdiplus/graphics.c
View file @
f620b663
...
...
@@ -1957,6 +1957,19 @@ GpStatus WINGDIPAPI GdipFillRectanglesI(GpGraphics *graphics, GpBrush *brush, GD
return
ret
;
}
GpStatus
WINGDIPAPI
GdipFlush
(
GpGraphics
*
graphics
,
GpFlushIntention
intention
)
{
static
int
calls
;
if
(
!
graphics
)
return
InvalidParameter
;
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
return
NotImplemented
;
}
/* FIXME: Compositing mode is not used anywhere except the getter/setter. */
GpStatus
WINGDIPAPI
GdipGetCompositingMode
(
GpGraphics
*
graphics
,
CompositingMode
*
mode
)
...
...
include/gdiplusenums.h
View file @
f620b663
...
...
@@ -298,6 +298,12 @@ enum CombineMode
CombineModeComplement
};
enum
FlushIntention
{
FlushIntentionFlush
=
0
,
FlushIntentionSync
=
1
};
#ifndef __cplusplus
typedef
enum
Unit
Unit
;
...
...
@@ -329,6 +335,7 @@ typedef enum HotkeyPrefix HotkeyPrefix;
typedef
enum
PenAlignment
GpPenAlignment
;
typedef
enum
ImageCodecFlags
ImageCodecFlags
;
typedef
enum
CombineMode
CombineMode
;
typedef
enum
FlushIntention
FlushIntention
;
#endif
/* end of c typedefs */
...
...
include/gdiplusflat.h
View file @
f620b663
...
...
@@ -368,6 +368,7 @@ GpStatus WINGDIPAPI GdipGetRegionHRgn(GpRegion *, GpGraphics *, HRGN *);
GpStatus
WINGDIPAPI
GdipSetEmpty
(
GpRegion
*
);
GpStatus
WINGDIPAPI
GdipSetInfinite
(
GpRegion
*
);
GpStatus
WINGDIPAPI
GdipFlush
(
GpGraphics
*
,
GpFlushIntention
);
#ifdef __cplusplus
}
...
...
include/gdiplusgpstubs.h
View file @
f620b663
...
...
@@ -81,5 +81,6 @@ typedef MatrixOrder GpMatrixOrder;
typedef
Point
GpPoint
;
typedef
WrapMode
GpWrapMode
;
typedef
Color
GpColor
;
typedef
FlushIntention
GpFlushIntention
;
#endif
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