gdiplus: Added GdipLoadImageFromStreamICM stub.

oldstable
Evan Stade 2007-07-24 17:19:21 -07:00 committed by Alexandre Julliard
parent fba5a59b61
commit 875a56ec39
2 changed files with 19 additions and 1 deletions

View File

@ -419,7 +419,7 @@
@ stub GdipLoadImageFromFile
@ stub GdipLoadImageFromFileICM
@ stub GdipLoadImageFromStream
@ stub GdipLoadImageFromStreamICM
@ stdcall GdipLoadImageFromStreamICM(ptr ptr)
@ stub GdipMeasureCharacterRanges
@ stub GdipMeasureDriverString
@ stub GdipMeasureString

View File

@ -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;
}