Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
fcb0e3a9
Commit
fcb0e3a9
authored
Aug 20, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Add a stub implementation for WinHttpSetTimeouts.
parent
6b9f60da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
session.c
dlls/winhttp/session.c
+9
-0
winhttp.spec
dlls/winhttp/winhttp.spec
+1
-1
No files found.
dlls/winhttp/session.c
View file @
fcb0e3a9
...
...
@@ -394,6 +394,15 @@ WINHTTP_STATUS_CALLBACK WINAPI WinHttpSetStatusCallback( HINTERNET handle, WINHT
return
ret
;
}
/***********************************************************************
* WinHttpSetTimeouts (winhttp.@)
*/
BOOL
WINAPI
WinHttpSetTimeouts
(
HINTERNET
handle
,
int
resolve
,
int
connect
,
int
send
,
int
receive
)
{
FIXME
(
"%p, %d, %d, %d, %d
\n
"
,
handle
,
resolve
,
connect
,
send
,
receive
);
return
TRUE
;
}
static
const
WCHAR
wkday
[
7
][
4
]
=
{{
'S'
,
'u'
,
'n'
,
0
},
{
'M'
,
'o'
,
'n'
,
0
},
{
'T'
,
'u'
,
'e'
,
0
},
{
'W'
,
'e'
,
'd'
,
0
},
{
'T'
,
'h'
,
'u'
,
0
},
{
'F'
,
'r'
,
'i'
,
0
},
{
'S'
,
'a'
,
't'
,
0
}};
...
...
dlls/winhttp/winhttp.spec
View file @
fcb0e3a9
...
...
@@ -25,7 +25,7 @@
@ stdcall WinHttpSetDefaultProxyConfiguration(ptr long long wstr ptr ptr)
@ stdcall WinHttpSetOption(ptr long ptr long)
@ stdcall WinHttpSetStatusCallback(ptr ptr long ptr)
@ st
ub WinHttpSetTimeouts
@ st
dcall WinHttpSetTimeouts(ptr long long long long)
@ stdcall WinHttpTimeFromSystemTime(ptr ptr)
@ stdcall WinHttpTimeToSystemTime(wstr ptr)
@ stdcall WinHttpWriteData(ptr ptr long ptr)
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