Module: wine Branch: master Commit: 816f99328827cc1d8e0885c4399a8e65ee56e69b URL: http://source.winehq.org/git/wine.git/?a=commit;h=816f99328827cc1d8e0885c439...
Author: Dan Hipschman dsh@linux.ucla.edu Date: Tue Oct 23 20:15:02 2007 -0700
oleaut32: Add stubs for IPropertyBag_Read.
---
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; +}