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
10990f58
Commit
10990f58
authored
Feb 24, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Feb 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Stub GdipGetRegionScansCount.
parent
ab124aa6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+1
-1
region.c
dlls/gdiplus/region.c
+12
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
10990f58
...
@@ -381,7 +381,7 @@
...
@@ -381,7 +381,7 @@
@ stdcall GdipGetRegionDataSize(ptr ptr)
@ stdcall GdipGetRegionDataSize(ptr ptr)
@ stdcall GdipGetRegionHRgn(ptr ptr ptr)
@ stdcall GdipGetRegionHRgn(ptr ptr ptr)
@ stub GdipGetRegionScans
@ stub GdipGetRegionScans
@ st
ub GdipGetRegionScansCount
@ st
dcall GdipGetRegionScansCount(ptr ptr ptr)
@ stub GdipGetRegionScansI
@ stub GdipGetRegionScansI
@ stub GdipGetRenderingOrigin
@ stub GdipGetRenderingOrigin
@ stdcall GdipGetSmoothingMode(ptr ptr)
@ stdcall GdipGetSmoothingMode(ptr ptr)
...
...
dlls/gdiplus/region.c
View file @
10990f58
...
@@ -1306,3 +1306,15 @@ GpStatus WINGDIPAPI GdipTranslateRegionI(GpRegion *region, INT dx, INT dy)
...
@@ -1306,3 +1306,15 @@ GpStatus WINGDIPAPI GdipTranslateRegionI(GpRegion *region, INT dx, INT dy)
return
GdipTranslateRegion
(
region
,
(
REAL
)
dx
,
(
REAL
)
dy
);
return
GdipTranslateRegion
(
region
,
(
REAL
)
dx
,
(
REAL
)
dy
);
}
}
GpStatus
WINGDIPAPI
GdipGetRegionScansCount
(
GpRegion
*
region
,
UINT
*
count
,
GpMatrix
*
matrix
)
{
static
int
calls
;
TRACE
(
"(%p, %p, %p)
\n
"
,
region
,
count
,
matrix
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
return
NotImplemented
;
}
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