From 24231913b4aa15751e309640a6c4a147b75c0736 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Wed, 9 Apr 2008 12:42:12 -0700 Subject: [PATCH 02/22] 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 -- 1.5.3.6