Module: wine Branch: master Commit: 374aacdc9f3123fad5c9867f8f9ef30cfc85b67e URL: http://source.winehq.org/git/wine.git/?a=commit;h=374aacdc9f3123fad5c9867f8f...
Author: Huw Davies huw@codeweavers.com Date: Thu May 14 16:55:14 2009 +0100
ole32: Add proxies and stubs for GetData and GetDataHere.
---
dlls/ole32/usrmarshal.c | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/dlls/ole32/usrmarshal.c b/dlls/ole32/usrmarshal.c index 8159a60..07fd805 100644 --- a/dlls/ole32/usrmarshal.c +++ b/dlls/ole32/usrmarshal.c @@ -2678,8 +2678,8 @@ HRESULT CALLBACK IDataObject_GetData_Proxy( FORMATETC *pformatetcIn, STGMEDIUM *pmedium) { - FIXME(":stub\n"); - return E_NOTIMPL; + TRACE("(%p)->(%p, %p)\n", This, pformatetcIn, pmedium); + return IDataObject_RemoteGetData_Proxy(This, pformatetcIn, pmedium); }
HRESULT __RPC_STUB IDataObject_GetData_Stub( @@ -2687,8 +2687,8 @@ HRESULT __RPC_STUB IDataObject_GetData_Stub( FORMATETC *pformatetcIn, STGMEDIUM *pRemoteMedium) { - FIXME(":stub\n"); - return E_NOTIMPL; + TRACE("(%p)->(%p, %p)\n", This, pformatetcIn, pRemoteMedium); + return IDataObject_GetData(This, pformatetcIn, pRemoteMedium); }
HRESULT CALLBACK IDataObject_GetDataHere_Proxy( @@ -2696,8 +2696,8 @@ HRESULT CALLBACK IDataObject_GetDataHere_Proxy( FORMATETC *pformatetc, STGMEDIUM *pmedium) { - FIXME(":stub\n"); - return E_NOTIMPL; + TRACE("(%p)->(%p, %p)\n", This, pformatetc, pmedium); + return IDataObject_RemoteGetDataHere_Proxy(This, pformatetc, pmedium); }
HRESULT __RPC_STUB IDataObject_GetDataHere_Stub( @@ -2705,8 +2705,8 @@ HRESULT __RPC_STUB IDataObject_GetDataHere_Stub( FORMATETC *pformatetc, STGMEDIUM *pRemoteMedium) { - FIXME(":stub\n"); - return E_NOTIMPL; + TRACE("(%p)->(%p, %p)\n", This, pformatetc, pRemoteMedium); + return IDataObject_GetDataHere(This, pformatetc, pRemoteMedium); }
HRESULT CALLBACK IDataObject_SetData_Proxy(