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
39468db2
Commit
39468db2
authored
Jul 21, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Jul 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Implement IWinHttpRequest::get_StatusText.
parent
e11828d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
2 deletions
+22
-2
request.c
dlls/winhttp/request.c
+22
-2
No files found.
dlls/winhttp/request.c
View file @
39468db2
...
...
@@ -2575,8 +2575,28 @@ static HRESULT WINAPI winhttp_request_get_StatusText(
IWinHttpRequest
*
iface
,
BSTR
*
status
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
struct
winhttp_request
*
request
=
impl_from_IWinHttpRequest
(
iface
);
DWORD
err
,
len
=
0
,
index
=
0
;
TRACE
(
"%p, %p
\n
"
,
request
,
status
);
if
(
request
->
state
<
REQUEST_STATE_SENT
)
{
return
HRESULT_FROM_WIN32
(
ERROR_WINHTTP_CANNOT_CALL_BEFORE_SEND
);
}
if
((
err
=
request_wait_for_response
(
request
,
INFINITE
,
NULL
)))
return
HRESULT_FROM_WIN32
(
err
);
WinHttpQueryHeaders
(
request
->
hrequest
,
WINHTTP_QUERY_STATUS_TEXT
,
NULL
,
NULL
,
&
len
,
&
index
);
err
=
GetLastError
();
if
(
err
!=
ERROR_INSUFFICIENT_BUFFER
)
return
HRESULT_FROM_WIN32
(
err
);
if
(
!
(
*
status
=
SysAllocStringLen
(
NULL
,
len
/
sizeof
(
WCHAR
)
)))
return
E_OUTOFMEMORY
;
index
=
0
;
if
(
!
WinHttpQueryHeaders
(
request
->
hrequest
,
WINHTTP_QUERY_STATUS_TEXT
,
NULL
,
*
status
,
&
len
,
&
index
))
{
SysFreeString
(
*
status
);
return
HRESULT_FROM_WIN32
(
GetLastError
()
);
}
return
S_OK
;
}
static
HRESULT
WINAPI
winhttp_request_get_ResponseText
(
...
...
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