gdiplus: Added GdipLoadImageFromStreamICM stub.
This commit is contained in:
parent
fba5a59b61
commit
875a56ec39
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue