gdiplus: Stub GdipCloneImage.
This commit is contained in:
parent
9f65b9a0fc
commit
af29f96939
|
@ -52,7 +52,7 @@
|
||||||
@ stdcall GdipCloneCustomLineCap(ptr ptr)
|
@ stdcall GdipCloneCustomLineCap(ptr ptr)
|
||||||
@ stdcall GdipCloneFont(ptr ptr)
|
@ stdcall GdipCloneFont(ptr ptr)
|
||||||
@ stub GdipCloneFontFamily
|
@ stub GdipCloneFontFamily
|
||||||
@ stub GdipCloneImage
|
@ stdcall GdipCloneImage(ptr ptr)
|
||||||
@ stdcall GdipCloneImageAttributes(ptr ptr)
|
@ stdcall GdipCloneImageAttributes(ptr ptr)
|
||||||
@ stdcall GdipCloneMatrix(ptr ptr)
|
@ stdcall GdipCloneMatrix(ptr ptr)
|
||||||
@ stdcall GdipClonePath(ptr ptr)
|
@ stdcall GdipClonePath(ptr ptr)
|
||||||
|
|
|
@ -240,6 +240,15 @@ GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap,
|
||||||
return Ok;
|
return Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipCloneImage(GpImage *image, GpImage **cloneImage)
|
||||||
|
{
|
||||||
|
if (!(image && cloneImage)) return InvalidParameter;
|
||||||
|
|
||||||
|
FIXME("stub: %p, %p", image, cloneImage);
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipCreateBitmapFromFile(GDIPCONST WCHAR* filename,
|
GpStatus WINGDIPAPI GdipCreateBitmapFromFile(GDIPCONST WCHAR* filename,
|
||||||
GpBitmap **bitmap)
|
GpBitmap **bitmap)
|
||||||
{
|
{
|
||||||
|
|
|
@ -344,6 +344,7 @@ GpStatus WINGDIPAPI GdipSaveImageToStream(GpImage*,IStream*,
|
||||||
GDIPCONST CLSID*,GDIPCONST EncoderParameters*);
|
GDIPCONST CLSID*,GDIPCONST EncoderParameters*);
|
||||||
GpStatus WINGDIPAPI GdipSetImagePalette(GpImage*,GDIPCONST ColorPalette*);
|
GpStatus WINGDIPAPI GdipSetImagePalette(GpImage*,GDIPCONST ColorPalette*);
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipCloneImage(GpImage*, GpImage**);
|
||||||
GpStatus WINGDIPAPI GdipCloneImageAttributes(GDIPCONST GpImageAttributes*,GpImageAttributes**);
|
GpStatus WINGDIPAPI GdipCloneImageAttributes(GDIPCONST GpImageAttributes*,GpImageAttributes**);
|
||||||
GpStatus WINGDIPAPI GdipCreateImageAttributes(GpImageAttributes**);
|
GpStatus WINGDIPAPI GdipCreateImageAttributes(GpImageAttributes**);
|
||||||
GpStatus WINGDIPAPI GdipDisposeImageAttributes(GpImageAttributes*);
|
GpStatus WINGDIPAPI GdipDisposeImageAttributes(GpImageAttributes*);
|
||||||
|
|
Loading…
Reference in New Issue