inetcomm: Add MimeOleObjectFromMoniker stub.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2263baaf2e
commit
c40001cdc4
|
@ -82,7 +82,7 @@
|
||||||
@ stdcall MimeOleGetPropertySchema(ptr)
|
@ stdcall MimeOleGetPropertySchema(ptr)
|
||||||
@ stub MimeOleGetRelatedSection
|
@ stub MimeOleGetRelatedSection
|
||||||
@ stub MimeOleInetDateToFileTime
|
@ stub MimeOleInetDateToFileTime
|
||||||
@ stub MimeOleObjectFromMoniker
|
@ stdcall MimeOleObjectFromMoniker(long ptr ptr ptr ptr ptr)
|
||||||
@ stub MimeOleOpenFileStream
|
@ stub MimeOleOpenFileStream
|
||||||
@ stub MimeOleParseMhtmlUrl
|
@ stub MimeOleParseMhtmlUrl
|
||||||
@ stub MimeOleParseRfc822Address
|
@ stub MimeOleParseRfc822Address
|
||||||
|
|
|
@ -3436,3 +3436,11 @@ HRESULT WINAPI MimeGetAddressFormatW(REFIID riid, void *object, DWORD addr_type,
|
||||||
|
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT WINAPI MimeOleObjectFromMoniker(BINDF bindf, IMoniker *moniker, IBindCtx *binding,
|
||||||
|
REFIID riid, void **out, IMoniker **moniker_new)
|
||||||
|
{
|
||||||
|
FIXME("(0x%08x, %p, %p, %s, %p, %p) stub\n", bindf, moniker, binding, debugstr_guid(riid), out, moniker_new);
|
||||||
|
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue