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

gdiplus: Added GdipLoadImageFromStreamICM stub.

parent fba5a59b
......@@ -419,7 +419,7 @@
@ stub GdipLoadImageFromFile
@ stub GdipLoadImageFromFileICM
@ stub GdipLoadImageFromStream
@ stub GdipLoadImageFromStreamICM
@ stdcall GdipLoadImageFromStreamICM(ptr ptr)
@ stub GdipMeasureCharacterRanges
@ stub GdipMeasureDriverString
@ stub GdipMeasureString
......
......@@ -16,8 +16,13 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "objbase.h"
#include "gdiplus.h"
#include "gdiplus_private.h"
#include "wine/debug.h"
......@@ -128,3 +133,16 @@ GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image,
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