gdiplus: Stub GdipCloneBitmapAreaI.
This commit is contained in:
parent
d2b923d58d
commit
efcd0bbffa
|
@ -47,7 +47,7 @@
|
||||||
@ stdcall GdipBitmapUnlockBits(ptr ptr)
|
@ stdcall GdipBitmapUnlockBits(ptr ptr)
|
||||||
@ stdcall GdipClearPathMarkers(ptr)
|
@ stdcall GdipClearPathMarkers(ptr)
|
||||||
@ stub GdipCloneBitmapArea
|
@ stub GdipCloneBitmapArea
|
||||||
@ stub GdipCloneBitmapAreaI
|
@ stdcall GdipCloneBitmapAreaI(long long long long long ptr ptr)
|
||||||
@ stdcall GdipCloneBrush(ptr ptr)
|
@ stdcall GdipCloneBrush(ptr ptr)
|
||||||
@ stdcall GdipCloneCustomLineCap(ptr ptr)
|
@ stdcall GdipCloneCustomLineCap(ptr ptr)
|
||||||
@ stdcall GdipCloneFont(ptr ptr)
|
@ stdcall GdipCloneFont(ptr ptr)
|
||||||
|
|
|
@ -249,6 +249,14 @@ GpStatus WINGDIPAPI GdipBitmapUnlockBits(GpBitmap* bitmap,
|
||||||
return Ok;
|
return Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipCloneBitmapAreaI(INT x, INT y, INT width, INT height,
|
||||||
|
PixelFormat format, GpBitmap* srcBitmap, GpBitmap** dstBitmap)
|
||||||
|
{
|
||||||
|
FIXME("(%i,%i,%i,%i,%i,%p,%p)\n", x, y, width, height, format, srcBitmap, dstBitmap);
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipCloneImage(GpImage *image, GpImage **cloneImage)
|
GpStatus WINGDIPAPI GdipCloneImage(GpImage *image, GpImage **cloneImage)
|
||||||
{
|
{
|
||||||
IStream* stream;
|
IStream* stream;
|
||||||
|
|
Loading…
Reference in New Issue