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
f40682eb
Commit
f40682eb
authored
Apr 02, 2010
by
Andrew Eikum
Committed by
Alexandre Julliard
Apr 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Implement HTTPChannel::GetRequestSucceeded.
parent
b688fd0d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-0
nsio.c
dlls/mshtml/nsio.c
+7
-2
No files found.
dlls/mshtml/mshtml_private.h
View file @
f40682eb
...
...
@@ -38,6 +38,7 @@
#define NS_ERROR_FAILURE ((nsresult)0x80004005L)
#define NS_NOINTERFACE ((nsresult)0x80004002L)
#define NS_ERROR_NOT_IMPLEMENTED ((nsresult)0x80004001L)
#define NS_ERROR_NOT_AVAILABLE ((nsresult)0x80040111L)
#define NS_ERROR_INVALID_ARG ((nsresult)0x80070057L)
#define NS_ERROR_UNEXPECTED ((nsresult)0x8000ffffL)
#define NS_ERROR_UNKNOWN_PROTOCOL ((nsresult)0x804b0012L)
...
...
dlls/mshtml/nsio.c
View file @
f40682eb
...
...
@@ -1052,9 +1052,14 @@ static nsresult NSAPI nsChannel_GetRequestSucceeded(nsIHttpChannel *iface,
{
nsChannel
*
This
=
NSCHANNEL_THIS
(
iface
);
FIXM
E
(
"(%p)->(%p)
\n
"
,
This
,
aRequestSucceeded
);
TRAC
E
(
"(%p)->(%p)
\n
"
,
This
,
aRequestSucceeded
);
return
NS_ERROR_NOT_IMPLEMENTED
;
if
(
!
This
->
response_status
)
return
NS_ERROR_NOT_AVAILABLE
;
*
aRequestSucceeded
=
(
This
->
response_status
<
400
);
return
NS_OK
;
}
static
nsresult
NSAPI
nsChannel_GetResponseHeader
(
nsIHttpChannel
*
iface
,
...
...
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