oleaut32 [1/2]: Add stubs for IPropertyBag_Read

Dan Hipschman dsh at linux.ucla.edu
Tue Oct 23 22:15:02 CDT 2007


This patch adds the IPropertyBag_Read stubs needed to link with oaidl_p.c
from the current oaidl.idl.  These were added since the MIDL generated
oaidl_p.c was produced.

---
 dlls/oleaut32/usrmarshal.c |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/dlls/oleaut32/usrmarshal.c b/dlls/oleaut32/usrmarshal.c
index 9976334..c97fc9e 100644
--- a/dlls/oleaut32/usrmarshal.c
+++ b/dlls/oleaut32/usrmarshal.c
@@ -1991,3 +1991,25 @@ HRESULT __RPC_STUB ITypeLib2_GetDocumentation2_Stub(
   FIXME("not implemented\n");
   return E_FAIL;
 }
+
+HRESULT CALLBACK IPropertyBag_Read_Proxy(
+    IPropertyBag* This,
+    LPCOLESTR pszPropName,
+    VARIANT *pVar,
+    IErrorLog *pErrorLog)
+{
+  FIXME("not implemented\n");
+  return E_FAIL;
+}
+
+HRESULT __RPC_STUB IPropertyBag_Read_Stub(
+    IPropertyBag* This,
+    LPCOLESTR pszPropName,
+    VARIANT *pVar,
+    IErrorLog *pErrorLog,
+    DWORD varType,
+    IUnknown *pUnkObj)
+{
+  FIXME("not implemented\n");
+  return E_FAIL;
+}



More information about the wine-patches mailing list