mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
gdiplus: Added GdipGetPenColor stub.
This commit is contained in:
parent
a72be4b167
commit
e43967773f
@ -333,7 +333,7 @@
|
|||||||
@ stdcall GdipGetPathWorldBounds(ptr ptr ptr ptr)
|
@ stdcall GdipGetPathWorldBounds(ptr ptr ptr ptr)
|
||||||
@ stub GdipGetPathWorldBoundsI
|
@ stub GdipGetPathWorldBoundsI
|
||||||
@ stub GdipGetPenBrushFill
|
@ stub GdipGetPenBrushFill
|
||||||
@ stub GdipGetPenColor
|
@ stdcall GdipGetPenColor(ptr ptr)
|
||||||
@ stub GdipGetPenCompoundArray
|
@ stub GdipGetPenCompoundArray
|
||||||
@ stub GdipGetPenCompoundCount
|
@ stub GdipGetPenCompoundCount
|
||||||
@ stub GdipGetPenCustomEndCap
|
@ stub GdipGetPenCustomEndCap
|
||||||
|
@ -134,6 +134,14 @@ GpStatus WINGDIPAPI GdipDeletePen(GpPen *pen)
|
|||||||
return Ok;
|
return Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipGetPenColor(GpPen *pen, ARGB *argb)
|
||||||
|
{
|
||||||
|
if(!pen || !argb)
|
||||||
|
return InvalidParameter;
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipGetPenDashStyle(GpPen *pen, GpDashStyle *dash)
|
GpStatus WINGDIPAPI GdipGetPenDashStyle(GpPen *pen, GpDashStyle *dash)
|
||||||
{
|
{
|
||||||
if(!pen || !dash)
|
if(!pen || !dash)
|
||||||
|
@ -30,6 +30,7 @@ extern "C" {
|
|||||||
GpStatus WINGDIPAPI GdipClonePen(GpPen*,GpPen**);
|
GpStatus WINGDIPAPI GdipClonePen(GpPen*,GpPen**);
|
||||||
GpStatus WINGDIPAPI GdipCreatePen1(ARGB,REAL,GpUnit,GpPen**);
|
GpStatus WINGDIPAPI GdipCreatePen1(ARGB,REAL,GpUnit,GpPen**);
|
||||||
GpStatus WINGDIPAPI GdipDeletePen(GpPen*);
|
GpStatus WINGDIPAPI GdipDeletePen(GpPen*);
|
||||||
|
GpStatus WINGDIPAPI GdipGetPenColor(GpPen*,ARGB*);
|
||||||
GpStatus WINGDIPAPI GdipGetPenDashStyle(GpPen*,GpDashStyle*);
|
GpStatus WINGDIPAPI GdipGetPenDashStyle(GpPen*,GpDashStyle*);
|
||||||
GpStatus WINGDIPAPI GdipSetPenBrushFill(GpPen*,GpBrush*);
|
GpStatus WINGDIPAPI GdipSetPenBrushFill(GpPen*,GpBrush*);
|
||||||
GpStatus WINGDIPAPI GdipSetPenCustomEndCap(GpPen*,GpCustomLineCap*);
|
GpStatus WINGDIPAPI GdipSetPenCustomEndCap(GpPen*,GpCustomLineCap*);
|
||||||
|
Loading…
Reference in New Issue
Block a user