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
9f2ede8d
Commit
9f2ede8d
authored
Oct 06, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 07, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added IInternetProtocolEx support to ftp protocol handler.
parent
72c8b283
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
36 deletions
+68
-36
ftp.c
dlls/urlmon/ftp.c
+60
-36
protocol.c
dlls/urlmon/tests/protocol.c
+8
-0
No files found.
dlls/urlmon/ftp.c
View file @
9f2ede8d
This diff is collapsed.
Click to expand it.
dlls/urlmon/tests/protocol.c
View file @
9f2ede8d
...
...
@@ -2958,6 +2958,14 @@ static void test_ftp_protocol(void)
test_protocol_terminate
(
async_protocol
);
if
(
pCreateUri
)
{
IInternetProtocolEx
*
protocolex
;
hres
=
IInternetProtocol_QueryInterface
(
async_protocol
,
&
IID_IInternetProtocolEx
,
(
void
**
)
&
protocolex
);
ok
(
hres
==
S_OK
,
"Could not get IInternetProtocolEx iface: %08x
\n
"
,
hres
);
IInternetProtocolEx_Release
(
protocolex
);
}
ref
=
IInternetProtocol_Release
(
async_protocol
);
ok
(
!
ref
,
"ref=%d
\n
"
,
ref
);
...
...
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