gdiplus: Added GdipSetCustomLineCapStrokeCaps stub.

This commit is contained in:
Evan Stade 2007-08-07 18:42:52 -07:00 committed by Alexandre Julliard
parent a93e61d377
commit 369dc8caba
3 changed files with 17 additions and 1 deletions

View File

@ -115,3 +115,17 @@ GpStatus WINGDIPAPI GdipDeleteCustomLineCap(GpCustomLineCap *customCap)
return Ok; return Ok;
} }
GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeCaps(GpCustomLineCap* custom,
GpLineCap start, GpLineCap end)
{
static int calls;
if(!custom)
return InvalidParameter;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}

View File

@ -516,7 +516,7 @@
@ stdcall GdipSetCompositingQuality(ptr long) @ stdcall GdipSetCompositingQuality(ptr long)
@ stub GdipSetCustomLineCapBaseCap @ stub GdipSetCustomLineCapBaseCap
@ stub GdipSetCustomLineCapBaseInset @ stub GdipSetCustomLineCapBaseInset
@ stub GdipSetCustomLineCapStrokeCaps @ stdcall GdipSetCustomLineCapStrokeCaps(ptr long long)
@ stub GdipSetCustomLineCapStrokeJoin @ stub GdipSetCustomLineCapStrokeJoin
@ stub GdipSetCustomLineCapWidthScale @ stub GdipSetCustomLineCapWidthScale
@ stub GdipSetEffectParameters @ stub GdipSetEffectParameters

View File

@ -170,6 +170,8 @@ GpStatus WINGDIPAPI GdipCloneCustomLineCap(GpCustomLineCap*,GpCustomLineCap**);
GpStatus WINGDIPAPI GdipCreateCustomLineCap(GpPath*,GpPath*,GpLineCap,REAL, GpStatus WINGDIPAPI GdipCreateCustomLineCap(GpPath*,GpPath*,GpLineCap,REAL,
GpCustomLineCap**); GpCustomLineCap**);
GpStatus WINGDIPAPI GdipDeleteCustomLineCap(GpCustomLineCap*); GpStatus WINGDIPAPI GdipDeleteCustomLineCap(GpCustomLineCap*);
GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeCaps(GpCustomLineCap*,GpLineCap,
GpLineCap);
GpStatus WINGDIPAPI GdipBitmapGetPixel(GpBitmap*,INT,INT,ARGB*); GpStatus WINGDIPAPI GdipBitmapGetPixel(GpBitmap*,INT,INT,ARGB*);
GpStatus WINGDIPAPI GdipBitmapLockBits(GpBitmap*,GDIPCONST GpRect*,UINT, GpStatus WINGDIPAPI GdipBitmapLockBits(GpBitmap*,GDIPCONST GpRect*,UINT,