Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d9a4299b
Commit
d9a4299b
authored
Apr 08, 2008
by
Lei Zhang
Committed by
Alexandre Julliard
Apr 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add a stub for GdipSetClipRectI.
parent
05faae7b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
graphics.c
dlls/gdiplus/graphics.c
+12
-0
gdiplusenums.h
include/gdiplusenums.h
+11
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
d9a4299b
...
...
@@ -510,7 +510,7 @@
@ stub GdipSetClipHrgn
@ stub GdipSetClipPath
@ stub GdipSetClipRect
@ st
ub GdipSetClipRectI
@ st
dcall GdipSetClipRectI(ptr long long long long long)
@ stub GdipSetClipRegion
@ stdcall GdipSetCompositingMode(ptr long)
@ stdcall GdipSetCompositingQuality(ptr long)
...
...
dlls/gdiplus/graphics.c
View file @
d9a4299b
...
...
@@ -2088,3 +2088,15 @@ GpStatus WINGDIPAPI GdipTranslateWorldTransform(GpGraphics *graphics, REAL dx,
return
GdipTranslateMatrix
(
graphics
->
worldtrans
,
dx
,
dy
,
order
);
}
GpStatus
WINGDIPAPI
GdipSetClipRectI
(
GpGraphics
*
graphics
,
INT
x
,
INT
y
,
INT
width
,
INT
height
,
CombineMode
combineMode
)
{
static
int
calls
;
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
return
NotImplemented
;
}
include/gdiplusenums.h
View file @
d9a4299b
...
...
@@ -270,6 +270,16 @@ enum ImageCodecFlags
ImageCodecFlagsUser
=
262144
};
enum
CombineMode
{
CombineModeReplace
,
CombineModeIntersect
,
CombineModeUnion
,
CombineModeXor
,
CombineModeExclude
,
CombineModeComplement
};
#ifndef __cplusplus
typedef
enum
Unit
Unit
;
...
...
@@ -299,6 +309,7 @@ typedef enum StringFormatFlags StringFormatFlags;
typedef
enum
HotkeyPrefix
HotkeyPrefix
;
typedef
enum
PenAlignment
GpPenAlignment
;
typedef
enum
ImageCodecFlags
ImageCodecFlags
;
typedef
enum
CombineMode
CombineMode
;
#endif
/* end of c typedefs */
...
...
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