[PATCH 3/4] inetcomm: Add MimeOleGetPropertySchema stub

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Fri Apr 15 02:50:47 CDT 2016


Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
---
 dlls/inetcomm/inetcomm.spec | 2 +-
 dlls/inetcomm/mimeole.c     | 6 ++++++
 include/mimeole.idl         | 2 ++
 3 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/dlls/inetcomm/inetcomm.spec b/dlls/inetcomm/inetcomm.spec
index 0c90b4d..86eb9bd 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 f70ad07..3708b9c 100644
--- a/dlls/inetcomm/mimeole.c
+++ b/dlls/inetcomm/mimeole.c
@@ -3023,3 +3023,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 c10d8e0..65c0b42 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")
-- 
2.8.0.rc3




More information about the wine-patches mailing list