Nikolay Sivov : ole32: Implemented some proxy/stubs methods.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jun 1 07:36:58 CDT 2015


Module: wine
Branch: master
Commit: 10c878a45170a41cb80c4bcc793e71aed8612ecb
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=10c878a45170a41cb80c4bcc793e71aed8612ecb

Author: Nikolay Sivov <nsivov at 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(




More information about the wine-cvs mailing list