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
5ce729a4
Commit
5ce729a4
authored
Nov 24, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Add stub implementations of GdipBeginContainer2 and GdipEndContainer.
parent
df93d19d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
2 deletions
+24
-2
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+2
-2
graphics.c
dlls/gdiplus/graphics.c
+21
-0
gdiplusenums.h
include/gdiplusenums.h
+1
-0
No files found.
dlls/gdiplus/gdiplus.spec
View file @
5ce729a4
...
...
@@ -32,7 +32,7 @@
@ stub GdipAddPathString
@ stub GdipAddPathStringI
@ stdcall GdipAlloc(long)
@ st
ub GdipBeginContainer2
@ st
dcall GdipBeginContainer2(ptr ptr)
@ stub GdipBeginContainer
@ stub GdipBeginContainerI
@ stub GdipBitmapApplyEffect
...
...
@@ -200,7 +200,7 @@
@ stdcall GdipDrawRectanglesI(ptr ptr ptr long)
@ stdcall GdipDrawString(ptr ptr long ptr ptr ptr ptr)
@ stub GdipEmfToWmfBits
@ st
ub GdipEndContainer
@ st
dcall GdipEndContainer(ptr ptr)
@ stub GdipEnumerateMetafileDestPoint
@ stub GdipEnumerateMetafileDestPointI
@ stub GdipEnumerateMetafileDestPoints
...
...
dlls/gdiplus/graphics.c
View file @
5ce729a4
...
...
@@ -2819,6 +2819,27 @@ GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state)
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipBeginContainer2
(
GpGraphics
*
graphics
,
GraphicsContainer
*
state
)
{
FIXME
(
"(%p, %p)
\n
"
,
graphics
,
state
);
if
(
!
graphics
||
!
state
)
return
InvalidParameter
;
*
state
=
0xdeadbeef
;
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipEndContainer
(
GpGraphics
*
graphics
,
GraphicsState
state
)
{
FIXME
(
"(%p, 0x%x)
\n
"
,
graphics
,
state
);
if
(
!
graphics
||
!
state
)
return
InvalidParameter
;
return
Ok
;
}
GpStatus
WINGDIPAPI
GdipScaleWorldTransform
(
GpGraphics
*
graphics
,
REAL
sx
,
REAL
sy
,
GpMatrixOrder
order
)
{
...
...
include/gdiplusenums.h
View file @
5ce729a4
...
...
@@ -20,6 +20,7 @@
#define _GDIPLUSENUMS_H
typedef
UINT
GraphicsState
;
typedef
UINT
GraphicsContainer
;
enum
Unit
{
...
...
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