gdiplus: Implemented GdipGetPenDashCap197819.

This commit is contained in:
Nikolay Sivov 2008-06-27 03:27:18 +04:00 committed by Alexandre Julliard
parent 314396ae9c
commit 02a9b6ae2e
3 changed files with 12 additions and 1 deletions

View File

@ -355,7 +355,7 @@
@ stub GdipGetPenCustomEndCap @ stub GdipGetPenCustomEndCap
@ stub GdipGetPenCustomStartCap @ stub GdipGetPenCustomStartCap
@ stdcall GdipGetPenDashArray(ptr ptr long) @ stdcall GdipGetPenDashArray(ptr ptr long)
@ stub GdipGetPenDashCap197819 @ stdcall GdipGetPenDashCap197819(ptr ptr)
@ stub GdipGetPenDashCount @ stub GdipGetPenDashCount
@ stdcall GdipGetPenDashOffset(ptr ptr) @ stdcall GdipGetPenDashOffset(ptr ptr)
@ stdcall GdipGetPenDashStyle(ptr ptr) @ stdcall GdipGetPenDashStyle(ptr ptr)

View File

@ -177,6 +177,16 @@ GpStatus WINGDIPAPI GdipGetPenDashArray(GpPen *pen, REAL *dash, INT count)
return Ok; return Ok;
} }
GpStatus WINGDIPAPI GdipGetPenDashCap197819(GpPen *pen, GpDashCap *dashCap)
{
if(!pen || !dashCap)
return InvalidParameter;
*dashCap = pen->dashcap;
return Ok;
}
GpStatus WINGDIPAPI GdipGetPenDashOffset(GpPen *pen, REAL *offset) GpStatus WINGDIPAPI GdipGetPenDashOffset(GpPen *pen, REAL *offset)
{ {
if(!pen || !offset) if(!pen || !offset)

View File

@ -49,6 +49,7 @@ GpStatus WINGDIPAPI GdipSetPenLineJoin(GpPen*,GpLineJoin);
GpStatus WINGDIPAPI GdipSetPenMiterLimit(GpPen*,REAL); GpStatus WINGDIPAPI GdipSetPenMiterLimit(GpPen*,REAL);
GpStatus WINGDIPAPI GdipSetPenStartCap(GpPen*,GpLineCap); GpStatus WINGDIPAPI GdipSetPenStartCap(GpPen*,GpLineCap);
GpStatus WINGDIPAPI GdipSetPenWidth(GpPen*,REAL); GpStatus WINGDIPAPI GdipSetPenWidth(GpPen*,REAL);
GpStatus WINGDIPAPI GdipGetPenDashCap197819(GpPen*,GpDashCap*);
GpStatus WINGDIPAPI GdipGetPenEndCap(GpPen*,GpLineCap*); GpStatus WINGDIPAPI GdipGetPenEndCap(GpPen*,GpLineCap*);
GpStatus WINGDIPAPI GdipGetPenLineJoin(GpPen*,GpLineJoin*); GpStatus WINGDIPAPI GdipGetPenLineJoin(GpPen*,GpLineJoin*);
GpStatus WINGDIPAPI GdipGetPenMiterLimit(GpPen*,REAL*); GpStatus WINGDIPAPI GdipGetPenMiterLimit(GpPen*,REAL*);