Commit 298929c8 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

oleaut32: Added IEnumConnectionPoints::Next proxy/stub.

parent aa3a2348
...@@ -2232,21 +2232,35 @@ HRESULT __RPC_STUB IEnumConnections_Next_Stub( ...@@ -2232,21 +2232,35 @@ HRESULT __RPC_STUB IEnumConnections_Next_Stub(
HRESULT CALLBACK IEnumConnectionPoints_Next_Proxy( HRESULT CALLBACK IEnumConnectionPoints_Next_Proxy(
IEnumConnectionPoints* This, IEnumConnectionPoints* This,
ULONG cConnections, ULONG cConnections,
LPCONNECTIONPOINT *ppCP, IConnectionPoint **ppCP,
ULONG *pcFetched) ULONG *pcFetched)
{ {
FIXME("not implemented\n"); ULONG fetched;
return E_NOTIMPL;
TRACE("(%u, %p %p)\n", cConnections, ppCP, pcFetched);
if (!pcFetched)
pcFetched = &fetched;
return IEnumConnectionPoints_RemoteNext_Proxy(This, cConnections, ppCP, pcFetched);
} }
HRESULT __RPC_STUB IEnumConnectionPoints_Next_Stub( HRESULT __RPC_STUB IEnumConnectionPoints_Next_Stub(
IEnumConnectionPoints* This, IEnumConnectionPoints* This,
ULONG cConnections, ULONG cConnections,
LPCONNECTIONPOINT *ppCP, IConnectionPoint **ppCP,
ULONG *pcFetched) ULONG *pcFetched)
{ {
FIXME("not implemented\n"); HRESULT hr;
return E_NOTIMPL;
TRACE("(%u, %p, %p)\n", cConnections, ppCP, pcFetched);
*pcFetched = 0;
hr = IEnumConnectionPoints_Next(This, cConnections, ppCP, pcFetched);
if (hr == S_OK)
*pcFetched = cConnections;
return hr;
} }
HRESULT CALLBACK IPersistMemory_Load_Proxy( HRESULT CALLBACK IPersistMemory_Load_Proxy(
......
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