mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
Stub for HttpSendRequestExA.
This commit is contained in:
parent
45c9fd892f
commit
f9b6d7bb27
3 changed files with 19 additions and 2 deletions
|
@ -7,9 +7,9 @@ SOVERSION = 1.0
|
|||
IMPORTS = user32 kernel32
|
||||
|
||||
C_SRCS = \
|
||||
ftp.c \
|
||||
http.c \
|
||||
internet.c \
|
||||
ftp.c \
|
||||
utility.c \
|
||||
wininet_main.c
|
||||
|
||||
|
|
|
@ -456,6 +456,23 @@ lend:
|
|||
return bSuccess;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* HttpSendRequestExA (WININET)
|
||||
*
|
||||
* Sends the specified request to the HTTP server and allows chunked
|
||||
* transfers
|
||||
*/
|
||||
BOOL WINAPI HttpSendRequestExA(HINTERNET hRequest,
|
||||
LPINTERNET_BUFFERSA lpBuffersIn,
|
||||
LPINTERNET_BUFFERSA lpBuffersOut,
|
||||
DWORD dwFlags, DWORD dwContext)
|
||||
{
|
||||
FIXME("(%p, %p, %p, %08lx, %08lx): stub\n", hRequest, lpBuffersIn,
|
||||
lpBuffersOut, dwFlags, dwContext);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* HttpSendRequestA (WININET.76)
|
||||
*
|
||||
|
|
|
@ -81,7 +81,7 @@ import kernel32.dll
|
|||
@ stdcall HttpQueryInfoA(ptr long ptr ptr ptr) HttpQueryInfoA
|
||||
@ stub HttpQueryInfoW
|
||||
@ stdcall HttpSendRequestA(ptr str long ptr long) HttpSendRequestA
|
||||
@ stub HttpSendRequestExA
|
||||
@ stdcall HttpSendRequestExA(long ptr ptr long long) HttpSendRequestExA
|
||||
@ stub HttpSendRequestExW
|
||||
@ stub HttpSendRequestW
|
||||
@ stub IncrementUrlCacheHeaderData
|
||||
|
|
Loading…
Reference in a new issue