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
e93353b2
Commit
e93353b2
authored
Dec 28, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 28, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added ResProtocolInfo::QueryInfo implementation.
parent
8a87ea5b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
3 deletions
+24
-3
protocol.c
dlls/mshtml/protocol.c
+24
-3
No files found.
dlls/mshtml/protocol.c
View file @
e93353b2
...
...
@@ -880,9 +880,30 @@ static HRESULT WINAPI ResProtocolInfo_QueryInfo(IInternetProtocolInfo *iface, LP
QUERYOPTION
QueryOption
,
DWORD
dwQueryFlags
,
LPVOID
pBuffer
,
DWORD
cbBuffer
,
DWORD
*
pcbBuf
,
DWORD
dwReserved
)
{
FIXME
(
"%p)->(%s %08x %08x %p %d %p %d)
\n
"
,
iface
,
debugstr_w
(
pwzUrl
),
QueryOption
,
dwQueryFlags
,
pBuffer
,
cbBuffer
,
pcbBuf
,
dwReserved
);
return
E_NOTIMPL
;
TRACE
(
"%p)->(%s %08x %08x %p %d %p %d)
\n
"
,
iface
,
debugstr_w
(
pwzUrl
),
QueryOption
,
dwQueryFlags
,
pBuffer
,
cbBuffer
,
pcbBuf
,
dwReserved
);
switch
(
QueryOption
)
{
case
QUERY_USES_NETWORK
:
if
(
!
pBuffer
||
cbBuffer
<
sizeof
(
DWORD
))
return
E_FAIL
;
*
(
DWORD
*
)
pBuffer
=
0
;
if
(
pcbBuf
)
*
pcbBuf
=
sizeof
(
DWORD
);
break
;
case
QUERY_IS_SECURE
:
FIXME
(
"not supporte QUERY_IS_SECURE
\n
"
);
return
E_NOTIMPL
;
case
QUERY_IS_SAFE
:
FIXME
(
"not supporte QUERY_IS_SAFE
\n
"
);
return
E_NOTIMPL
;
default:
return
INET_E_USE_DEFAULT_PROTOCOLHANDLER
;
}
return
S_OK
;
}
static
const
IInternetProtocolInfoVtbl
ResProtocolInfoVtbl
=
{
...
...
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