inetcomm: Add MimeOleGetPropertySchema 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
8604604244
commit
9b8d63d168
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue