From 1131685a94ea1e23784af7b9e5854c56df369470 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Wed, 9 Apr 2008 12:49:02 -0700 Subject: [PATCH] gdiplus: Add a stub for GdipSetCustomLineCapStrokeJoin. --- dlls/gdiplus/customlinecap.c | 11 +++++++++++ dlls/gdiplus/gdiplus.spec | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/dlls/gdiplus/customlinecap.c b/dlls/gdiplus/customlinecap.c index 544f856bf25..ce442438b6a 100644 --- a/dlls/gdiplus/customlinecap.c +++ b/dlls/gdiplus/customlinecap.c @@ -162,3 +162,14 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapBaseInset(GpCustomLineCap* custom, return NotImplemented; } + +GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeJoin(GpCustomLineCap* custom, + GpLineJoin join) +{ + static int calls; + + if(!(calls++)) + FIXME("not implemented\n"); + + return NotImplemented; +} diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec index 598c6637401..f191aeb8341 100644 --- a/dlls/gdiplus/gdiplus.spec +++ b/dlls/gdiplus/gdiplus.spec @@ -517,7 +517,7 @@ @ stdcall GdipSetCustomLineCapBaseCap(ptr long) @ stdcall GdipSetCustomLineCapBaseInset(ptr long) @ stdcall GdipSetCustomLineCapStrokeCaps(ptr long long) -@ stub GdipSetCustomLineCapStrokeJoin +@ stdcall GdipSetCustomLineCapStrokeJoin(ptr long) @ stub GdipSetCustomLineCapWidthScale @ stub GdipSetEffectParameters @ stub GdipSetEmpty -- 2.11.4.GIT