diff --git a/dlls/inetcomm/inetcomm.spec b/dlls/inetcomm/inetcomm.spec index 0c90b4db28e..86eb9bd0e37 100644 --- a/dlls/inetcomm/inetcomm.spec +++ b/dlls/inetcomm/inetcomm.spec @@ -79,7 +79,7 @@ @ stdcall MimeOleGetInternat(ptr) @ stub MimeOleGetPropA @ stub MimeOleGetPropW -@ stub MimeOleGetPropertySchema +@ stdcall MimeOleGetPropertySchema(ptr) @ stub MimeOleGetRelatedSection @ stub MimeOleInetDateToFileTime @ stub MimeOleObjectFromMoniker diff --git a/dlls/inetcomm/mimeole.c b/dlls/inetcomm/mimeole.c index 8ca8b35859f..8aebb3891a4 100644 --- a/dlls/inetcomm/mimeole.c +++ b/dlls/inetcomm/mimeole.c @@ -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; +} diff --git a/include/mimeole.idl b/include/mimeole.idl index c10d8e055ef..65c0b42658e 100644 --- a/include/mimeole.idl +++ b/include/mimeole.idl @@ -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")