Commit 5ce729a4 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

gdiplus: Add stub implementations of GdipBeginContainer2 and GdipEndContainer.

parent df93d19d
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
@ stub GdipAddPathString @ stub GdipAddPathString
@ stub GdipAddPathStringI @ stub GdipAddPathStringI
@ stdcall GdipAlloc(long) @ stdcall GdipAlloc(long)
@ stub GdipBeginContainer2 @ stdcall GdipBeginContainer2(ptr ptr)
@ stub GdipBeginContainer @ stub GdipBeginContainer
@ stub GdipBeginContainerI @ stub GdipBeginContainerI
@ stub GdipBitmapApplyEffect @ stub GdipBitmapApplyEffect
...@@ -200,7 +200,7 @@ ...@@ -200,7 +200,7 @@
@ stdcall GdipDrawRectanglesI(ptr ptr ptr long) @ stdcall GdipDrawRectanglesI(ptr ptr ptr long)
@ stdcall GdipDrawString(ptr ptr long ptr ptr ptr ptr) @ stdcall GdipDrawString(ptr ptr long ptr ptr ptr ptr)
@ stub GdipEmfToWmfBits @ stub GdipEmfToWmfBits
@ stub GdipEndContainer @ stdcall GdipEndContainer(ptr ptr)
@ stub GdipEnumerateMetafileDestPoint @ stub GdipEnumerateMetafileDestPoint
@ stub GdipEnumerateMetafileDestPointI @ stub GdipEnumerateMetafileDestPointI
@ stub GdipEnumerateMetafileDestPoints @ stub GdipEnumerateMetafileDestPoints
......
...@@ -2819,6 +2819,27 @@ GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state) ...@@ -2819,6 +2819,27 @@ GpStatus WINGDIPAPI GdipSaveGraphics(GpGraphics *graphics, GraphicsState *state)
return Ok; 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, GpStatus WINGDIPAPI GdipScaleWorldTransform(GpGraphics *graphics, REAL sx,
REAL sy, GpMatrixOrder order) REAL sy, GpMatrixOrder order)
{ {
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#define _GDIPLUSENUMS_H #define _GDIPLUSENUMS_H
typedef UINT GraphicsState; typedef UINT GraphicsState;
typedef UINT GraphicsContainer;
enum Unit enum Unit
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment