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
25346b84
Commit
25346b84
authored
Sep 01, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add some documentation stubs to make winapicheck happy.
parent
4823b2c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
1 deletion
+25
-1
region.c
dlls/gdiplus/region.c
+25
-1
No files found.
dlls/gdiplus/region.c
View file @
25346b84
...
...
@@ -227,6 +227,9 @@ GpStatus WINGDIPAPI GdipCloneRegion(GpRegion *region, GpRegion **clone)
return
clone_element
(
&
region
->
node
,
&
element
);
}
/*****************************************************************************
* GdipCombineRegionPath [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipCombineRegionPath
(
GpRegion
*
region
,
GpPath
*
path
,
CombineMode
mode
)
{
GpRegion
*
path_region
;
...
...
@@ -270,6 +273,9 @@ out:
return
stat
;
}
/*****************************************************************************
* GdipCombineRegionRect [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipCombineRegionRect
(
GpRegion
*
region
,
GDIPCONST
GpRectF
*
rect
,
CombineMode
mode
)
{
...
...
@@ -314,6 +320,9 @@ out:
return
stat
;
}
/*****************************************************************************
* GdipCombineRegionRectI [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipCombineRegionRectI
(
GpRegion
*
region
,
GDIPCONST
GpRect
*
rect
,
CombineMode
mode
)
{
...
...
@@ -373,6 +382,9 @@ GpStatus WINGDIPAPI GdipCombineRegionRegion(GpRegion *region1,
return
Ok
;
}
/*****************************************************************************
* GdipCreateRegion [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipCreateRegion
(
GpRegion
**
region
)
{
TRACE
(
"%p
\n
"
,
region
);
...
...
@@ -505,6 +517,9 @@ GpStatus WINGDIPAPI GdipCreateRegionPath(GpPath *path, GpRegion **region)
return
Ok
;
}
/*****************************************************************************
* GdipCreateRegionRect [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipCreateRegionRect
(
GDIPCONST
GpRectF
*
rect
,
GpRegion
**
region
)
{
...
...
@@ -734,6 +749,9 @@ GpStatus WINGDIPAPI GdipGetRegionData(GpRegion *region, BYTE *buffer, UINT size,
return
Ok
;
}
/*****************************************************************************
* GdipGetRegionDataSize [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipGetRegionDataSize
(
GpRegion
*
region
,
UINT
*
needed
)
{
TRACE
(
"%p, %p
\n
"
,
region
,
needed
);
...
...
@@ -778,9 +796,12 @@ GpStatus WINGDIPAPI GdipIsEqualRegion(GpRegion *region, GpRegion *region2, GpGra
return
NotImplemented
;
}
/* I think graphics is ignored here */
/*****************************************************************************
* GdipIsInfiniteRegion [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipIsInfiniteRegion
(
GpRegion
*
region
,
GpGraphics
*
graphics
,
BOOL
*
res
)
{
/* I think graphics is ignored here */
TRACE
(
"(%p, %p, %p)
\n
"
,
region
,
graphics
,
res
);
if
(
!
region
||
!
graphics
||
!
res
)
...
...
@@ -791,6 +812,9 @@ GpStatus WINGDIPAPI GdipIsInfiniteRegion(GpRegion *region, GpGraphics *graphics,
return
Ok
;
}
/*****************************************************************************
* GdipSetEmptye [GDIPLUS.@]
*/
GpStatus
WINGDIPAPI
GdipSetEmpty
(
GpRegion
*
region
)
{
GpStatus
stat
;
...
...
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