Nikolay Sivov : urlmon/tests: Fixed a couple of test failure on Win10.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Sep 25 15:22:02 CDT 2015


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

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Sun Sep 20 11:53:59 2015 +0300

urlmon/tests: Fixed a couple of test failure on Win10.

---

 dlls/urlmon/tests/protocol.c | 6 ++++++
 include/urlmon.idl           | 3 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/dlls/urlmon/tests/protocol.c b/dlls/urlmon/tests/protocol.c
index c50d356..01d52ea 100644
--- a/dlls/urlmon/tests/protocol.c
+++ b/dlls/urlmon/tests/protocol.c
@@ -887,6 +887,9 @@ static HRESULT WINAPI ProtocolSink_ReportProgress(IInternetProtocolSink *iface,
     case BINDSTATUS_RESERVED_7:
         trace("BINDSTATUS_RESERVED_7\n");
         break;
+    case BINDSTATUS_RESERVED_8:
+        trace("BINDSTATUS_RESERVED_8\n");
+        break;
     default:
         ok(0, "Unexpected status %d (%d)\n", ulStatusCode, ulStatusCode-BINDSTATUS_LAST);
     };
@@ -1399,6 +1402,9 @@ static HRESULT WINAPI BindInfo_GetBindString(IInternetBindInfo *iface, ULONG ulS
         CHECK_EXPECT(GetBindString_ROOTDOC_URL);
         ok(cEl == 1, "cEl=%d, expected 1\n", cEl);
         return E_NOTIMPL;
+    case BINDSTRING_ENTERPRISE_ID:
+        ok(cEl == 1, "cEl=%d, expected 1\n", cEl);
+        return E_NOTIMPL;
     default:
         ok(0, "unexpected ulStringType %d\n", ulStringType);
     }
diff --git a/include/urlmon.idl b/include/urlmon.idl
index 4be8d4b..35dee40 100644
--- a/include/urlmon.idl
+++ b/include/urlmon.idl
@@ -729,7 +729,8 @@ interface IInternetBindInfo : IUnknown
         BINDSTRING_ROOTDOC_URL,
         BINDSTRING_INITIAL_FILENAME,
         BINDSTRING_PROXY_USERNAME,
-        BINDSTRING_PROXY_PASSWORD
+        BINDSTRING_PROXY_PASSWORD,
+        BINDSTRING_ENTERPRISE_ID
     } BINDSTRING;
 
     HRESULT GetBindInfo(




More information about the wine-cvs mailing list