Commit f9b6d7bb authored by Huw D M Davies's avatar Huw D M Davies Committed by Alexandre Julliard

Stub for HttpSendRequestExA.

parent 45c9fd89
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment