Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d86143b3
Commit
d86143b3
authored
May 22, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
May 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Fixed tests on Windows.
parent
9f4283dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
protocol.c
dlls/urlmon/tests/protocol.c
+3
-4
No files found.
dlls/urlmon/tests/protocol.c
View file @
d86143b3
...
@@ -786,10 +786,7 @@ static HRESULT WINAPI MimeProtocolSink_ReportData(IInternetProtocolSink *iface,
...
@@ -786,10 +786,7 @@ static HRESULT WINAPI MimeProtocolSink_ReportData(IInternetProtocolSink *iface,
ok
(
hres
==
S_OK
,
"ReportProgress failed: %08x
\n
"
,
hres
);
ok
(
hres
==
S_OK
,
"ReportProgress failed: %08x
\n
"
,
hres
);
CHECK_CALLED
(
ReportProgress_MIMETYPEAVAILABLE
);
CHECK_CALLED
(
ReportProgress_MIMETYPEAVAILABLE
);
SET_EXPECT
(
ReportProgress_CACHEFILENAMEAVAILABLE
);
/* FIXME: test BINDSTATUS_CACHEFILENAMEAVAILABLE */
hres
=
IInternetProtocolSink_ReportProgress
(
filtered_sink
,
BINDSTATUS_CACHEFILENAMEAVAILABLE
,
expect_wsz
=
emptyW
);
ok
(
hres
==
S_OK
,
"ReportProgress(BINDSTATUS_CACHEFILENAMEAVAILABLE) failed: %08x
\n
"
,
hres
);
CHECK_CALLED
(
ReportProgress_CACHEFILENAMEAVAILABLE
);
}
}
SET_EXPECT
(
ReportData
);
SET_EXPECT
(
ReportData
);
...
@@ -842,6 +839,8 @@ static HRESULT QueryInterface(REFIID riid, void **ppv)
...
@@ -842,6 +839,8 @@ static HRESULT QueryInterface(REFIID riid, void **ppv)
*
ppv
=
&
protocol_sink
;
*
ppv
=
&
protocol_sink
;
if
(
IsEqualGUID
(
&
IID_IServiceProvider
,
riid
))
if
(
IsEqualGUID
(
&
IID_IServiceProvider
,
riid
))
*
ppv
=
&
service_provider
;
*
ppv
=
&
service_provider
;
if
(
IsEqualGUID
(
&
IID_IUriContainer
,
riid
))
return
E_NOINTERFACE
;
/* TODO */
if
(
*
ppv
)
if
(
*
ppv
)
return
S_OK
;
return
S_OK
;
...
...
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