Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c0308873
Commit
c0308873
authored
Sep 20, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon/tests: Fixed a couple of test failure on Win10.
parent
a3ab34b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
protocol.c
dlls/urlmon/tests/protocol.c
+6
-0
urlmon.idl
include/urlmon.idl
+2
-1
No files found.
dlls/urlmon/tests/protocol.c
View file @
c0308873
...
...
@@ -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
);
}
...
...
include/urlmon.idl
View file @
c0308873
...
...
@@ -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
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment