gdiplus: Added GdipRemovePropertyItem stub.
This commit is contained in:
parent
3ee25cc3df
commit
9a0405dc97
|
@ -473,7 +473,7 @@
|
|||
@ stub GdipRecordMetafileStream
|
||||
@ stub GdipRecordMetafileStreamI
|
||||
@ stub GdipReleaseDC
|
||||
@ stub GdipRemovePropertyItem
|
||||
@ stdcall GdipRemovePropertyItem(ptr long)
|
||||
@ stub GdipResetClip
|
||||
@ stub GdipResetImageAttributes
|
||||
@ stub GdipResetLineTransform
|
||||
|
|
|
@ -287,6 +287,19 @@ GpStatus WINGDIPAPI GdipLoadImageFromStreamICM(IStream* stream, GpImage **image)
|
|||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipRemovePropertyItem(GpImage *image, PROPID propId)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
if(!image)
|
||||
return InvalidParameter;
|
||||
|
||||
if(!(calls++))
|
||||
FIXME("not implemented\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSaveImageToStream(GpImage *image, IStream* stream,
|
||||
GDIPCONST CLSID* clsid, GDIPCONST EncoderParameters* params)
|
||||
{
|
||||
|
|
|
@ -153,6 +153,7 @@ GpStatus WINGDIPAPI GdipGetMetafileHeaderFromMetafile(GpMetafile*,MetafileHeader
|
|||
GpStatus WINGDIPAPI GdipGetPropertyItemSize(GpImage*,PROPID,UINT*);
|
||||
GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage*,GDIPCONST GUID*,UINT*);
|
||||
GpStatus WINGDIPAPI GdipLoadImageFromStreamICM(IStream*,GpImage**);
|
||||
GpStatus WINGDIPAPI GdipRemovePropertyItem(GpImage*,PROPID);
|
||||
GpStatus WINGDIPAPI GdipSaveImageToStream(GpImage*,IStream*,
|
||||
GDIPCONST CLSID*,GDIPCONST EncoderParameters*);
|
||||
|
||||
|
|
Loading…
Reference in New Issue