Commit 348c115a authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

gdiplus: Stub for GdipGetImagePaletteSize.

parent 5a1a2631
...@@ -292,7 +292,7 @@ ...@@ -292,7 +292,7 @@
@ stdcall GdipGetImageHorizontalResolution(ptr ptr) @ stdcall GdipGetImageHorizontalResolution(ptr ptr)
@ stub GdipGetImageItemData @ stub GdipGetImageItemData
@ stub GdipGetImagePalette @ stub GdipGetImagePalette
@ stub GdipGetImagePaletteSize @ stdcall GdipGetImagePaletteSize(ptr ptr)
@ stdcall GdipGetImagePixelFormat(ptr ptr) @ stdcall GdipGetImagePixelFormat(ptr ptr)
@ stdcall GdipGetImageRawFormat(ptr ptr) @ stdcall GdipGetImageRawFormat(ptr ptr)
@ stub GdipGetImageThumbnail @ stub GdipGetImageThumbnail
......
...@@ -748,6 +748,16 @@ GpStatus WINGDIPAPI GdipGetImageHorizontalResolution(GpImage *image, REAL *res) ...@@ -748,6 +748,16 @@ GpStatus WINGDIPAPI GdipGetImageHorizontalResolution(GpImage *image, REAL *res)
return NotImplemented; return NotImplemented;
} }
GpStatus WINGDIPAPI GdipGetImagePaletteSize(GpImage *image, INT *size)
{
FIXME("%p %p\n", image, size);
if(!image || !size)
return InvalidParameter;
return NotImplemented;
}
/* FIXME: test this function for non-bitmap types */ /* FIXME: test this function for non-bitmap types */
GpStatus WINGDIPAPI GdipGetImagePixelFormat(GpImage *image, PixelFormat *format) GpStatus WINGDIPAPI GdipGetImagePixelFormat(GpImage *image, PixelFormat *format)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment