mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
gdiplus: Stub GdipGetPenCompoundCount.
This commit is contained in:
parent
5694825ae3
commit
3506521f16
2 changed files with 11 additions and 1 deletions
|
@ -351,7 +351,7 @@
|
|||
@ stdcall GdipGetPenBrushFill(ptr ptr)
|
||||
@ stdcall GdipGetPenColor(ptr ptr)
|
||||
@ stub GdipGetPenCompoundArray
|
||||
@ stub GdipGetPenCompoundCount
|
||||
@ stdcall GdipGetPenCompoundCount(ptr ptr)
|
||||
@ stdcall GdipGetPenCustomEndCap(ptr ptr)
|
||||
@ stdcall GdipGetPenCustomStartCap(ptr ptr)
|
||||
@ stdcall GdipGetPenDashArray(ptr ptr long)
|
||||
|
|
|
@ -443,6 +443,16 @@ GpStatus WINGDIPAPI GdipSetPenColor(GpPen *pen, ARGB argb)
|
|||
return GdipSetSolidFillColor(((GpSolidFill*)pen->brush), argb);
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetPenCompoundCount(GpPen *pen, INT *count)
|
||||
{
|
||||
FIXME("(%p, %p): stub\n", pen, count);
|
||||
|
||||
if (!pen || !count)
|
||||
return InvalidParameter;
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetPenCompoundArray(GpPen *pen, GDIPCONST REAL *dash,
|
||||
INT count)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue