From 816f99328827cc1d8e0885c4399a8e65ee56e69b Mon Sep 17 00:00:00 2001 From: Dan Hipschman Date: Tue, 23 Oct 2007 20:15:02 -0700 Subject: [PATCH] oleaut32: Add stubs for IPropertyBag_Read. --- dlls/oleaut32/usrmarshal.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/dlls/oleaut32/usrmarshal.c b/dlls/oleaut32/usrmarshal.c index 997633469f7..c97fc9e0297 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; +} -- 2.11.4.GIT