Module: wine Branch: master Commit: 10c878a45170a41cb80c4bcc793e71aed8612ecb URL: http://source.winehq.org/git/wine.git/?a=commit;h=10c878a45170a41cb80c4bcc79...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Fri May 29 12:50:07 2015 +0300
ole32: Implemented some proxy/stubs methods.
---
dlls/ole32/usrmarshal.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/dlls/ole32/usrmarshal.c b/dlls/ole32/usrmarshal.c index 7875bef..2cb97f3 100644 --- a/dlls/ole32/usrmarshal.c +++ b/dlls/ole32/usrmarshal.c @@ -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(