ole32: Implemented some proxy/stubs methods.

This commit is contained in:
Nikolay Sivov 2015-05-29 12:50:07 +03:00 committed by Alexandre Julliard
parent 0bed1bfd93
commit 10c878a451
1 changed files with 8 additions and 8 deletions

View File

@ -3011,15 +3011,15 @@ HRESULT CALLBACK IOleInPlaceActiveObject_TranslateAccelerator_Proxy(
IOleInPlaceActiveObject* This,
LPMSG lpmsg)
{
FIXME(":stub\n");
return E_NOTIMPL;
TRACE("(%p %p)\n", This, lpmsg);
return IOleInPlaceActiveObject_RemoteTranslateAccelerator_Proxy(This);
}
HRESULT __RPC_STUB IOleInPlaceActiveObject_TranslateAccelerator_Stub(
IOleInPlaceActiveObject* This)
{
FIXME(":stub\n");
return E_NOTIMPL;
TRACE("(%p)\n", This);
return S_FALSE;
}
HRESULT CALLBACK IOleInPlaceActiveObject_ResizeBorder_Proxy(
@ -3049,8 +3049,8 @@ HRESULT CALLBACK IOleCache2_UpdateCache_Proxy(
DWORD grfUpdf,
LPVOID pReserved)
{
FIXME(":stub\n");
return E_NOTIMPL;
TRACE("(%p, %p, 0x%08x, %p)\n", This, pDataObject, grfUpdf, pReserved);
return IOleCache2_RemoteUpdateCache_Proxy(This, pDataObject, grfUpdf, (LONG_PTR)pReserved);
}
HRESULT __RPC_STUB IOleCache2_UpdateCache_Stub(
@ -3059,8 +3059,8 @@ HRESULT __RPC_STUB IOleCache2_UpdateCache_Stub(
DWORD grfUpdf,
LONG_PTR pReserved)
{
FIXME(":stub\n");
return E_NOTIMPL;
TRACE("(%p, %p, 0x%08x, %li)\n", This, pDataObject, grfUpdf, pReserved);
return IOleCache2_UpdateCache(This, pDataObject, grfUpdf, (void*)pReserved);
}
HRESULT CALLBACK IEnumOLEVERB_Next_Proxy(