Module: wine Branch: master Commit: 39e9bdbd2a1d4a5c99f0c6c246a8c60e198d0391 URL: http://source.winehq.org/git/wine.git/?a=commit;h=39e9bdbd2a1d4a5c99f0c6c246...
Author: Lei Zhang thestig@google.com Date: Wed Apr 9 12:42:12 2008 -0700
gdiplus: Add a stub for GdipSetCustomLineCapBaseCap.
---
dlls/gdiplus/customlinecap.c | 11 +++++++++++ dlls/gdiplus/gdiplus.spec | 2 +- 2 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/customlinecap.c b/dlls/gdiplus/customlinecap.c index e161e1b..75dcd99 100644 --- a/dlls/gdiplus/customlinecap.c +++ b/dlls/gdiplus/customlinecap.c @@ -129,3 +129,14 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeCaps(GpCustomLineCap* custom,
return NotImplemented; } + +GpStatus WINGDIPAPI GdipSetCustomLineCapBaseCap(GpCustomLineCap* custom, + GpLineCap base) +{ + static int calls; + + if(!(calls++)) + FIXME("not implemented\n"); + + return NotImplemented; +} diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec index f6024cd..bb6dfee 100644 --- a/dlls/gdiplus/gdiplus.spec +++ b/dlls/gdiplus/gdiplus.spec @@ -514,7 +514,7 @@ @ stdcall GdipSetClipRegion(ptr ptr long) @ stdcall GdipSetCompositingMode(ptr long) @ stdcall GdipSetCompositingQuality(ptr long) -@ stub GdipSetCustomLineCapBaseCap +@ stdcall GdipSetCustomLineCapBaseCap(ptr long) @ stub GdipSetCustomLineCapBaseInset @ stdcall GdipSetCustomLineCapStrokeCaps(ptr long long) @ stub GdipSetCustomLineCapStrokeJoin