Alexandre Julliard : urlmon/tests: Accept IInternetProtocolEx interface id.

Alexandre Julliard julliard at winehq.org
Fri Nov 14 07:54:57 CST 2008


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Fri Nov 14 12:08:26 2008 +0100

urlmon/tests: Accept IInternetProtocolEx interface id.

---

 dlls/urlmon/tests/protocol.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/dlls/urlmon/tests/protocol.c b/dlls/urlmon/tests/protocol.c
index bdd5a85..55a6052 100644
--- a/dlls/urlmon/tests/protocol.c
+++ b/dlls/urlmon/tests/protocol.c
@@ -755,6 +755,12 @@ static HRESULT WINAPI Protocol_QueryInterface(IInternetProtocol *iface, REFIID r
         return S_OK;
     }
 
+    if(IsEqualGUID(&IID_IInternetProtocolEx, riid)) {
+        trace("IID_IInternetProtocolEx not supported\n");
+        *ppv = NULL;
+        return E_NOINTERFACE;
+    }
+
     if(IsEqualGUID(&IID_IInternetPriority, riid)) {
         *ppv = &InternetPriority;
         return S_OK;




More information about the wine-cvs mailing list