gdiplus: Added GdipSetSolidFillColor and GdipGetSolidFillColor stubs.
This commit is contained in:
parent
37598f81e7
commit
82abeeea75
|
@ -74,3 +74,19 @@ GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush *brush)
|
|||
|
||||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill *sf, ARGB *argb)
|
||||
{
|
||||
if(!sf || !argb)
|
||||
return InvalidParameter;
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetSolidFillColor(GpSolidFill *sf, ARGB argb)
|
||||
{
|
||||
if(!sf)
|
||||
return InvalidParameter;
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
|
|
@ -369,7 +369,7 @@
|
|||
@ stub GdipGetRegionScansI
|
||||
@ stub GdipGetRenderingOrigin
|
||||
@ stdcall GdipGetSmoothingMode(ptr ptr)
|
||||
@ stub GdipGetSolidFillColor
|
||||
@ stdcall GdipGetSolidFillColor(ptr ptr)
|
||||
@ stub GdipGetStringFormatAlign
|
||||
@ stub GdipGetStringFormatDigitSubstitution
|
||||
@ stub GdipGetStringFormatFlags
|
||||
|
@ -563,7 +563,7 @@
|
|||
@ stub GdipSetPropertyItem
|
||||
@ stub GdipSetRenderingOrigin
|
||||
@ stdcall GdipSetSmoothingMode(ptr long)
|
||||
@ stub GdipSetSolidFillColor
|
||||
@ stdcall GdipSetSolidFillColor(ptr ptr)
|
||||
@ stub GdipSetStringFormatAlign
|
||||
@ stub GdipSetStringFormatDigitSubstitution
|
||||
@ stub GdipSetStringFormatFlags
|
||||
|
|
|
@ -72,6 +72,8 @@ GpStatus WINGDIPAPI GdipCloneBrush(GpBrush*,GpBrush**);
|
|||
GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB,GpSolidFill**);
|
||||
GpStatus WINGDIPAPI GdipGetBrushType(GpBrush*,GpBrushType*);
|
||||
GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush*);
|
||||
GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill*,ARGB*);
|
||||
GpStatus WINGDIPAPI GdipSetSolidFillColor(GpSolidFill*,ARGB);
|
||||
|
||||
GpStatus WINGDIPAPI GdipAddPathArc(GpPath*,REAL,REAL,REAL,REAL,REAL,REAL);
|
||||
GpStatus WINGDIPAPI GdipAddPathBeziers(GpPath*,GDIPCONST GpPointF*,INT);
|
||||
|
|
Loading…
Reference in New Issue