Commit 816f9932 authored by Dan Hipschman's avatar Dan Hipschman Committed by Alexandre Julliard

oleaut32: Add stubs for IPropertyBag_Read.

parent 1aab1072
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment