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
317d8c16
Commit
317d8c16
authored
Feb 15, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 15, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Expose nsIFormPOSTActionChannel interface from nsChannel object.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c19a7980
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
nsiface.idl
dlls/mshtml/nsiface.idl
+9
-0
nsio.c
dlls/mshtml/nsio.c
+3
-0
No files found.
dlls/mshtml/nsiface.idl
View file @
317d8c16
...
...
@@ -723,6 +723,15 @@ interface nsIUploadChannel : nsISupports
[
object,
uuid(fc826b53-0db8-42b4-aa6a-5dd2cfca52a4),
local
]
interface nsIFormPOSTActionChannel : nsIUploadChannel
{
}
[
object,
uuid(8d171460-a716-41f1-92be-8c659db39b45),
local
]
...
...
dlls/mshtml/nsio.c
View file @
317d8c16
...
...
@@ -540,6 +540,9 @@ static nsresult NSAPI nsChannel_QueryInterface(nsIHttpChannel *iface, nsIIDRef r
}
else
if
(
IsEqualGUID
(
&
IID_nsIUploadChannel
,
riid
))
{
TRACE
(
"(%p)->(IID_nsIUploadChannel %p)
\n
"
,
This
,
result
);
*
result
=
&
This
->
nsIUploadChannel_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_nsIFormPOSTActionChannel
,
riid
))
{
TRACE
(
"(%p)->(IID_nsIFormPOSTActionChannel %p)
\n
"
,
This
,
result
);
*
result
=
&
This
->
nsIUploadChannel_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_nsIHttpChannelInternal
,
riid
))
{
TRACE
(
"(%p)->(IID_nsIHttpChannelInternal %p)
\n
"
,
This
,
result
);
*
result
=
is_http_channel
(
This
)
?
&
This
->
nsIHttpChannelInternal_iface
:
NULL
;
...
...
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