inetcomm: Add MimeOleObjectFromMoniker stub.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Alistair Leslie-Hughes 2016-08-15 20:53:45 +00:00 committed by Alexandre Julliard
parent 2263baaf2e
commit c40001cdc4
2 changed files with 9 additions and 1 deletions

View File

@ -82,7 +82,7 @@
@ stdcall MimeOleGetPropertySchema(ptr)
@ stub MimeOleGetRelatedSection
@ stub MimeOleInetDateToFileTime
@ stub MimeOleObjectFromMoniker
@ stdcall MimeOleObjectFromMoniker(long ptr ptr ptr ptr ptr)
@ stub MimeOleOpenFileStream
@ stub MimeOleParseMhtmlUrl
@ stub MimeOleParseRfc822Address

View File

@ -3436,3 +3436,11 @@ HRESULT WINAPI MimeGetAddressFormatW(REFIID riid, void *object, DWORD addr_type,
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;
}