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
fabfea59
Commit
fabfea59
authored
Dec 30, 2003
by
Sylvain Petreolle
Committed by
Alexandre Julliard
Dec 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for options CONNECT_TIMEOUT and DATA_RECEIVE_TIMEOUT.
parent
04f96a86
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
internet.c
dlls/wininet/internet.c
+12
-0
No files found.
dlls/wininet/internet.c
View file @
fabfea59
...
...
@@ -1635,6 +1635,18 @@ BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
FIXME
(
"Option INTERNET_OPTION_REQUEST_PRIORITY (%ld): STUB
\n
"
,
priority
);
}
break
;
case
INTERNET_OPTION_CONNECT_TIMEOUT
:
{
unsigned
long
connecttimeout
=*
(
unsigned
long
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_CONNECT_TIMEOUT (%ld): STUB
\n
"
,
connecttimeout
);
}
break
;
case
INTERNET_OPTION_DATA_RECEIVE_TIMEOUT
:
{
unsigned
long
receivetimeout
=*
(
unsigned
long
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%ld): STUB
\n
"
,
receivetimeout
);
}
break
;
case
INTERNET_OPTION_RESET_URLCACHE_SESSION
:
FIXME
(
"Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB
\n
"
);
break
;
...
...
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