oleaut32: Added proxy/stub body for CreateInstanceLic().

This commit is contained in:
Nikolay Sivov 2013-06-06 08:13:13 +04:00 committed by Alexandre Julliard
parent 40966b3615
commit 4ee9aef018
1 changed files with 13 additions and 4 deletions

View File

@ -2242,8 +2242,17 @@ HRESULT CALLBACK IClassFactory2_CreateInstanceLic_Proxy(
BSTR bstrKey,
PVOID *ppvObj)
{
FIXME("not implemented\n");
return E_NOTIMPL;
TRACE("(%p, %s, %p)\n", pUnkOuter, debugstr_guid(riid), ppvObj);
*ppvObj = NULL;
if (pUnkOuter)
{
ERR("aggregation is not allowed on remote objects\n");
return CLASS_E_NOAGGREGATION;
}
return IClassFactory2_RemoteCreateInstanceLic_Proxy(This, riid, bstrKey, (IUnknown**)ppvObj);
}
HRESULT __RPC_STUB IClassFactory2_CreateInstanceLic_Stub(
@ -2252,8 +2261,8 @@ HRESULT __RPC_STUB IClassFactory2_CreateInstanceLic_Stub(
BSTR bstrKey,
IUnknown **ppvObj)
{
FIXME("not implemented\n");
return E_NOTIMPL;
TRACE("(%s, %p)\n", debugstr_guid(riid), ppvObj);
return IClassFactory2_CreateInstanceLic(This, NULL, NULL, riid, bstrKey, (void**)ppvObj);
}
HRESULT CALLBACK IEnumConnections_Next_Proxy(