Jacek Caban : urlmon: Added IWinInetInfo and IWinInetHttpInfo proxy/ stub implementation.

Alexandre Julliard julliard at winehq.org
Mon Dec 17 13:58:23 CST 2012


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Dec 17 14:53:24 2012 +0100

urlmon: Added IWinInetInfo and IWinInetHttpInfo proxy/stub implementation.

---

 dlls/urlmon/usrmarshal.c |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dlls/urlmon/usrmarshal.c b/dlls/urlmon/usrmarshal.c
index e6b468a..d669918 100644
--- a/dlls/urlmon/usrmarshal.c
+++ b/dlls/urlmon/usrmarshal.c
@@ -26,30 +26,30 @@ HRESULT CALLBACK IWinInetHttpInfo_QueryInfo_Proxy(IWinInetHttpInfo* This,
     DWORD dwOption, LPVOID pBuffer, DWORD *pcbBuf, DWORD *pdwFlags,
     DWORD *pdwReserved)
 {
-    FIXME("stub\n");
-    return E_NOTIMPL;
+    TRACE("(%p %x %p %p %p %p)\n", This, dwOption, pBuffer, pcbBuf, pdwFlags, pdwReserved);
+    return IWinInetHttpInfo_RemoteQueryInfo_Proxy(This, dwOption, pBuffer, pcbBuf, pdwFlags, pdwReserved);
 }
 
 HRESULT __RPC_STUB IWinInetHttpInfo_QueryInfo_Stub(IWinInetHttpInfo* This,
     DWORD dwOption, BYTE *pBuffer, DWORD *pcbBuf, DWORD *pdwFlags,
     DWORD *pdwReserved)
 {
-    FIXME("stub\n");
-    return E_NOTIMPL;
+    TRACE("(%p %x %p %p %p %p)\n", This, dwOption, pBuffer, pcbBuf, pdwFlags, pdwReserved);
+    return IWinInetHttpInfo_QueryInfo(This, dwOption, pBuffer, pcbBuf, pdwFlags, pdwReserved);
 }
 
 HRESULT CALLBACK IWinInetInfo_QueryOption_Proxy(IWinInetInfo* This,
         DWORD dwOption, LPVOID pBuffer, DWORD *pcbBuf)
 {
-    FIXME("stub\n");
-    return E_NOTIMPL;
+    TRACE("(%p %x %p %p)\n", This, dwOption, pBuffer, pcbBuf);
+    return IWinInetInfo_RemoteQueryOption_Proxy(This, dwOption, pBuffer, pcbBuf);
 }
 
 HRESULT __RPC_STUB IWinInetInfo_QueryOption_Stub(IWinInetInfo* This,
         DWORD dwOption, BYTE *pBuffer, DWORD *pcbBuf)
 {
-    FIXME("stub\n");
-    return E_NOTIMPL;
+    TRACE("(%p %x %p %p)\n", This, dwOption, pBuffer, pcbBuf);
+    return IWinInetInfo_QueryOption(This, dwOption, pBuffer, pcbBuf);
 }
 
 HRESULT CALLBACK IBindHost_MonikerBindToStorage_Proxy(IBindHost* This,




More information about the wine-cvs mailing list