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;
|
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 GdipGetRegionScansI
|
||||||
@ stub GdipGetRenderingOrigin
|
@ stub GdipGetRenderingOrigin
|
||||||
@ stdcall GdipGetSmoothingMode(ptr ptr)
|
@ stdcall GdipGetSmoothingMode(ptr ptr)
|
||||||
@ stub GdipGetSolidFillColor
|
@ stdcall GdipGetSolidFillColor(ptr ptr)
|
||||||
@ stub GdipGetStringFormatAlign
|
@ stub GdipGetStringFormatAlign
|
||||||
@ stub GdipGetStringFormatDigitSubstitution
|
@ stub GdipGetStringFormatDigitSubstitution
|
||||||
@ stub GdipGetStringFormatFlags
|
@ stub GdipGetStringFormatFlags
|
||||||
@ -563,7 +563,7 @@
|
|||||||
@ stub GdipSetPropertyItem
|
@ stub GdipSetPropertyItem
|
||||||
@ stub GdipSetRenderingOrigin
|
@ stub GdipSetRenderingOrigin
|
||||||
@ stdcall GdipSetSmoothingMode(ptr long)
|
@ stdcall GdipSetSmoothingMode(ptr long)
|
||||||
@ stub GdipSetSolidFillColor
|
@ stdcall GdipSetSolidFillColor(ptr ptr)
|
||||||
@ stub GdipSetStringFormatAlign
|
@ stub GdipSetStringFormatAlign
|
||||||
@ stub GdipSetStringFormatDigitSubstitution
|
@ stub GdipSetStringFormatDigitSubstitution
|
||||||
@ stub GdipSetStringFormatFlags
|
@ stub GdipSetStringFormatFlags
|
||||||
|
@ -72,6 +72,8 @@ GpStatus WINGDIPAPI GdipCloneBrush(GpBrush*,GpBrush**);
|
|||||||
GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB,GpSolidFill**);
|
GpStatus WINGDIPAPI GdipCreateSolidFill(ARGB,GpSolidFill**);
|
||||||
GpStatus WINGDIPAPI GdipGetBrushType(GpBrush*,GpBrushType*);
|
GpStatus WINGDIPAPI GdipGetBrushType(GpBrush*,GpBrushType*);
|
||||||
GpStatus WINGDIPAPI GdipDeleteBrush(GpBrush*);
|
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 GdipAddPathArc(GpPath*,REAL,REAL,REAL,REAL,REAL,REAL);
|
||||||
GpStatus WINGDIPAPI GdipAddPathBeziers(GpPath*,GDIPCONST GpPointF*,INT);
|
GpStatus WINGDIPAPI GdipAddPathBeziers(GpPath*,GDIPCONST GpPointF*,INT);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user