Commit 875a56ec authored by Evan Stade's avatar Evan Stade Committed by Alexandre Julliard

gdiplus: Added GdipLoadImageFromStreamICM stub.

parent fba5a59b
...@@ -419,7 +419,7 @@ ...@@ -419,7 +419,7 @@
@ stub GdipLoadImageFromFile @ stub GdipLoadImageFromFile
@ stub GdipLoadImageFromFileICM @ stub GdipLoadImageFromFileICM
@ stub GdipLoadImageFromStream @ stub GdipLoadImageFromStream
@ stub GdipLoadImageFromStreamICM @ stdcall GdipLoadImageFromStreamICM(ptr ptr)
@ stub GdipMeasureCharacterRanges @ stub GdipMeasureCharacterRanges
@ stub GdipMeasureDriverString @ stub GdipMeasureDriverString
@ stub GdipMeasureString @ stub GdipMeasureString
......
...@@ -16,8 +16,13 @@ ...@@ -16,8 +16,13 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/ */
#include <stdarg.h>
#include "windef.h" #include "windef.h"
#include "winbase.h"
#include "wingdi.h" #include "wingdi.h"
#include "objbase.h"
#include "gdiplus.h" #include "gdiplus.h"
#include "gdiplus_private.h" #include "gdiplus_private.h"
#include "wine/debug.h" #include "wine/debug.h"
...@@ -128,3 +133,16 @@ GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image, ...@@ -128,3 +133,16 @@ GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image,
return NotImplemented; return NotImplemented;
} }
GpStatus WINGDIPAPI GdipLoadImageFromStreamICM(IStream* stream, GpImage **image)
{
static int calls;
if(!stream || !image)
return InvalidParameter;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}
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