Stub for HttpSendRequestExA.
This commit is contained in:
parent
45c9fd892f
commit
f9b6d7bb27
|
@ -7,9 +7,9 @@ SOVERSION = 1.0
|
||||||
IMPORTS = user32 kernel32
|
IMPORTS = user32 kernel32
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
ftp.c \
|
||||||
http.c \
|
http.c \
|
||||||
internet.c \
|
internet.c \
|
||||||
ftp.c \
|
|
||||||
utility.c \
|
utility.c \
|
||||||
wininet_main.c
|
wininet_main.c
|
||||||
|
|
||||||
|
|
|
@ -456,6 +456,23 @@ lend:
|
||||||
return bSuccess;
|
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)
|
* HttpSendRequestA (WININET.76)
|
||||||
*
|
*
|
||||||
|
|
|
@ -81,7 +81,7 @@ import kernel32.dll
|
||||||
@ stdcall HttpQueryInfoA(ptr long ptr ptr ptr) HttpQueryInfoA
|
@ stdcall HttpQueryInfoA(ptr long ptr ptr ptr) HttpQueryInfoA
|
||||||
@ stub HttpQueryInfoW
|
@ stub HttpQueryInfoW
|
||||||
@ stdcall HttpSendRequestA(ptr str long ptr long) HttpSendRequestA
|
@ stdcall HttpSendRequestA(ptr str long ptr long) HttpSendRequestA
|
||||||
@ stub HttpSendRequestExA
|
@ stdcall HttpSendRequestExA(long ptr ptr long long) HttpSendRequestExA
|
||||||
@ stub HttpSendRequestExW
|
@ stub HttpSendRequestExW
|
||||||
@ stub HttpSendRequestW
|
@ stub HttpSendRequestW
|
||||||
@ stub IncrementUrlCacheHeaderData
|
@ stub IncrementUrlCacheHeaderData
|
||||||
|
|
Loading…
Reference in New Issue