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
0b2ea8aa
Commit
0b2ea8aa
authored
Mar 17, 2012
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Mar 29, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add GdipResetPageTransform stub.
parent
afbf2894
Show 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
graphics.c
dlls/gdiplus/graphics.c
+12
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
0b2ea8aa
...
@@ -457,7 +457,7 @@
...
@@ -457,7 +457,7 @@
457 stdcall GdipResetClip(ptr)
457 stdcall GdipResetClip(ptr)
458 stub GdipResetImageAttributes
458 stub GdipResetImageAttributes
459 stdcall GdipResetLineTransform(ptr)
459 stdcall GdipResetLineTransform(ptr)
460 st
ub GdipResetPageTransform
460 st
dcall GdipResetPageTransform(ptr)
461 stdcall GdipResetPath(ptr)
461 stdcall GdipResetPath(ptr)
462 stub GdipResetPathGradientTransform
462 stub GdipResetPathGradientTransform
463 stdcall GdipResetPenTransform(ptr)
463 stdcall GdipResetPenTransform(ptr)
...
...
dlls/gdiplus/graphics.c
View file @
0b2ea8aa
...
@@ -6501,3 +6501,15 @@ cleanup:
...
@@ -6501,3 +6501,15 @@ cleanup:
GdipDeleteRegion
(
rgn
);
GdipDeleteRegion
(
rgn
);
return
stat
;
return
stat
;
}
}
GpStatus
WINGDIPAPI
GdipResetPageTransform
(
GpGraphics
*
graphics
)
{
static
int
calls
;
TRACE
(
"(%p) stub
\n
"
,
graphics
);
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