Module: wine Branch: master Commit: 2e4eb7144c39ac7e55f3ddad3d0364d31af418df URL: http://source.winehq.org/git/wine.git/?a=commit;h=2e4eb7144c39ac7e55f3ddad3d...
Author: Vincent Povirk vincent@codeweavers.com Date: Sat Jun 19 16:09:00 2010 -0500
gdiplus: Stub GdipGetLineTransform.
---
dlls/gdiplus/brush.c | 12 ++++++++++++ dlls/gdiplus/gdiplus.spec | 2 +- 2 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/brush.c b/dlls/gdiplus/brush.c index 57db380..1d05f3e 100644 --- a/dlls/gdiplus/brush.c +++ b/dlls/gdiplus/brush.c @@ -1784,6 +1784,18 @@ GpStatus WINGDIPAPI GdipSetLineTransform(GpLineGradient *brush, return NotImplemented; }
+GpStatus WINGDIPAPI GdipGetLineTransform(GpLineGradient *brush, GpMatrix *matrix) +{ + static int calls; + + TRACE("(%p,%p)\n", brush, matrix); + + if(!(calls++)) + FIXME("not implemented\n"); + + return NotImplemented; +} + GpStatus WINGDIPAPI GdipScaleLineTransform(GpLineGradient *brush, REAL sx, REAL sy, GpMatrixOrder order) { diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec index a8f5b5f..23c3ddd 100644 --- a/dlls/gdiplus/gdiplus.spec +++ b/dlls/gdiplus/gdiplus.spec @@ -309,7 +309,7 @@ @ stdcall GdipGetLineRect(ptr ptr) @ stdcall GdipGetLineRectI(ptr ptr) @ stdcall GdipGetLineSpacing(ptr long ptr) -@ stub GdipGetLineTransform +@ stdcall GdipGetLineTransform(ptr ptr) @ stdcall GdipGetLineWrapMode(ptr ptr) @ stdcall GdipGetLogFontA(ptr ptr ptr) @ stdcall GdipGetLogFontW(ptr ptr ptr)