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
f9b6d7bb
Commit
f9b6d7bb
authored
Oct 28, 2000
by
Huw D M Davies
Committed by
Alexandre Julliard
Oct 28, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub for HttpSendRequestExA.
parent
45c9fd89
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
Makefile.in
dlls/wininet/Makefile.in
+1
-1
http.c
dlls/wininet/http.c
+17
-0
wininet.spec
dlls/wininet/wininet.spec
+1
-1
No files found.
dlls/wininet/Makefile.in
View file @
f9b6d7bb
...
...
@@ -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
...
...
dlls/wininet/http.c
View file @
f9b6d7bb
...
...
@@ -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)
*
...
...
dlls/wininet/wininet.spec
View file @
f9b6d7bb
...
...
@@ -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
@ st
ub
HttpSendRequestExA
@ st
dcall HttpSendRequestExA(long ptr ptr long long)
HttpSendRequestExA
@ stub HttpSendRequestExW
@ stub HttpSendRequestW
@ stub IncrementUrlCacheHeaderData
...
...
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