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

gdiplus: Stub for GdipRotateLineTransform.

parent f4c017ea
...@@ -1331,3 +1331,17 @@ GpStatus WINGDIPAPI GdipGetLineRectI(GpLineGradient *brush, GpRect *rect) ...@@ -1331,3 +1331,17 @@ GpStatus WINGDIPAPI GdipGetLineRectI(GpLineGradient *brush, GpRect *rect)
return ret; return ret;
} }
GpStatus WINGDIPAPI GdipRotateLineTransform(GpLineGradient* brush,
REAL angle, GpMatrixOrder order)
{
static int calls;
if(!brush)
return InvalidParameter;
if(!(calls++))
FIXME("(%p, %.2f, %d) stub\n", brush, angle, order);
return NotImplemented;
}
...@@ -485,7 +485,7 @@ ...@@ -485,7 +485,7 @@
@ stdcall GdipResetWorldTransform(ptr) @ stdcall GdipResetWorldTransform(ptr)
@ stdcall GdipRestoreGraphics(ptr long) @ stdcall GdipRestoreGraphics(ptr long)
@ stdcall GdipReversePath(ptr) @ stdcall GdipReversePath(ptr)
@ stub GdipRotateLineTransform @ stdcall GdipRotateLineTransform(ptr long long)
@ stdcall GdipRotateMatrix(ptr long long) @ stdcall GdipRotateMatrix(ptr long long)
@ stub GdipRotatePathGradientTransform @ stub GdipRotatePathGradientTransform
@ stub GdipRotatePenTransform @ stub GdipRotatePenTransform
......
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