Commit 62512971 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

gdiplus: Stub for GdipResetPenTransform.

parent 79155695
...@@ -480,7 +480,7 @@ ...@@ -480,7 +480,7 @@
@ stub GdipResetPageTransform @ stub GdipResetPageTransform
@ stdcall GdipResetPath(ptr) @ stdcall GdipResetPath(ptr)
@ stub GdipResetPathGradientTransform @ stub GdipResetPathGradientTransform
@ stub GdipResetPenTransform @ stdcall GdipResetPenTransform(ptr)
@ stdcall GdipResetTextureTransform(ptr) @ stdcall GdipResetTextureTransform(ptr)
@ stdcall GdipResetWorldTransform(ptr) @ stdcall GdipResetWorldTransform(ptr)
@ stdcall GdipRestoreGraphics(ptr long) @ stdcall GdipRestoreGraphics(ptr long)
......
...@@ -385,6 +385,19 @@ GpStatus WINGDIPAPI GdipGetPenWidth(GpPen *pen, REAL *width) ...@@ -385,6 +385,19 @@ GpStatus WINGDIPAPI GdipGetPenWidth(GpPen *pen, REAL *width)
return Ok; return Ok;
} }
GpStatus WINGDIPAPI GdipResetPenTransform(GpPen *pen)
{
static int calls;
if(!pen)
return InvalidParameter;
if(!(calls++))
FIXME("(%p) stub\n", pen);
return NotImplemented;
}
GpStatus WINGDIPAPI GdipSetPenBrushFill(GpPen *pen, GpBrush *brush) GpStatus WINGDIPAPI GdipSetPenBrushFill(GpPen *pen, GpBrush *brush)
{ {
TRACE("(%p, %p)\n", pen, brush); TRACE("(%p, %p)\n", pen, brush);
......
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