gdiplus: Added GdipImageSetAbort stub.
This commit is contained in:
parent
5742497a35
commit
a5ab896abd
|
@ -621,7 +621,7 @@
|
|||
621 stub GdipBitmapGetHistogram
|
||||
622 stub GdipBitmapGetHistogramSize
|
||||
623 stub GdipBitmapConvertFormat
|
||||
624 stub GdipImageSetAbort
|
||||
624 stdcall GdipImageSetAbort(ptr ptr)
|
||||
625 stub GdipGraphicsSetAbort
|
||||
626 stub GdipDrawImageFX
|
||||
627 stdcall GdipConvertToEmfPlus(ptr ptr ptr long ptr ptr)
|
||||
|
|
|
@ -5235,3 +5235,12 @@ GpStatus WINGDIPAPI GdipImageRotateFlip(GpImage *image, RotateFlipType type)
|
|||
|
||||
return stat;
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* GdipImageSetAbort [GDIPLUS.@]
|
||||
*/
|
||||
GpStatus WINGDIPAPI GdipImageSetAbort(GpImage *image, GdiplusAbort *pabort)
|
||||
{
|
||||
FIXME("(%p, %p): stub\n", image, pabort);
|
||||
return NotImplemented;
|
||||
}
|
||||
|
|
|
@ -421,6 +421,7 @@ GpStatus WINGDIPAPI GdipImageGetFrameDimensionsCount(GpImage*,UINT*);
|
|||
GpStatus WINGDIPAPI GdipImageGetFrameDimensionsList(GpImage*,GUID*,UINT);
|
||||
GpStatus WINGDIPAPI GdipImageRotateFlip(GpImage*,RotateFlipType);
|
||||
GpStatus WINGDIPAPI GdipImageSelectActiveFrame(GpImage*,GDIPCONST GUID*,UINT);
|
||||
GpStatus WINGDIPAPI GdipImageSetAbort(GpImage*,GdiplusAbort*);
|
||||
GpStatus WINGDIPAPI GdipLoadImageFromFile(GDIPCONST WCHAR*,GpImage**);
|
||||
GpStatus WINGDIPAPI GdipLoadImageFromFileICM(GDIPCONST WCHAR*,GpImage**);
|
||||
GpStatus WINGDIPAPI GdipLoadImageFromStream(IStream*,GpImage**);
|
||||
|
|
|
@ -54,6 +54,7 @@ extern "C" {
|
|||
typedef BOOL (CALLBACK * ImageAbort)(VOID *);
|
||||
typedef ImageAbort DrawImageAbort;
|
||||
typedef ImageAbort GetThumbnailImageAbort;
|
||||
typedef struct GdiplusAbort GdiplusAbort;
|
||||
|
||||
typedef BOOL (CALLBACK * EnumerateMetafileProc)(EmfPlusRecordType,UINT,UINT,const BYTE*,VOID*);
|
||||
|
||||
|
|
Loading…
Reference in New Issue