Commit 9b8d63d1 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

inetcomm: Add MimeOleGetPropertySchema stub.

parent 86046042
......@@ -79,7 +79,7 @@
@ stdcall MimeOleGetInternat(ptr)
@ stub MimeOleGetPropA
@ stub MimeOleGetPropW
@ stub MimeOleGetPropertySchema
@ stdcall MimeOleGetPropertySchema(ptr)
@ stub MimeOleGetRelatedSection
@ stub MimeOleInetDateToFileTime
@ stub MimeOleObjectFromMoniker
......
......@@ -3031,3 +3031,9 @@ HRESULT VirtualStream_create(IUnknown *outer, void **obj)
return MimeOleCreateVirtualStream((IStream **)obj);
}
HRESULT WINAPI MimeOleGetPropertySchema(IMimePropertySchema **schema)
{
FIXME("(%p) stub\n", schema);
return E_NOTIMPL;
}
......@@ -1378,6 +1378,8 @@ cpp_quote("HRESULT WINAPI MimeEditCreateMimeDocument(IUnknown*,IMimeMessage*,DWO
cpp_quote("HRESULT WINAPI MimeEditGetBackgroundImageUrl(IUnknown*,BSTR*);")
cpp_quote("HRESULT WINAPI MimeEditDocumentFromStream(IStream*,REFIID,void**);")
cpp_quote("HRESULT WINAPI MimeOleGetPropertySchema(IMimePropertySchema**);")
cpp_quote("#ifdef __cplusplus")
cpp_quote("}")
cpp_quote("#endif")
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