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
3d143253
Commit
3d143253
authored
Oct 14, 2008
by
Austin English
Committed by
Alexandre Julliard
Oct 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Quiet a noisy fixme.
parent
6f23a98c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
internet.c
dlls/wininet/internet.c
+6
-1
No files found.
dlls/wininet/internet.c
View file @
3d143253
...
...
@@ -2024,6 +2024,8 @@ BOOL WINAPI InternetReadFileExW(HINTERNET hFile, LPINTERNET_BUFFERSW lpBuffer,
DWORD
INET_QueryOption
(
DWORD
option
,
void
*
buffer
,
DWORD
*
size
,
BOOL
unicode
)
{
static
BOOL
warn
=
TRUE
;
switch
(
option
)
{
case
INTERNET_OPTION_REQUEST_FLAGS
:
TRACE
(
"INTERNET_OPTION_REQUEST_FLAGS
\n
"
);
...
...
@@ -2050,8 +2052,11 @@ DWORD INET_QueryOption(DWORD option, void *buffer, DWORD *size, BOOL unicode)
return
ERROR_SUCCESS
;
case
INTERNET_OPTION_CONNECTED_STATE
:
FIXME
(
"INTERNET_OPTION_CONNECTED_STATE: semi-stub
\n
"
);
if
(
warn
)
{
FIXME
(
"INTERNET_OPTION_CONNECTED_STATE: semi-stub
\n
"
);
warn
=
FALSE
;
}
if
(
*
size
<
sizeof
(
ULONG
))
return
ERROR_INSUFFICIENT_BUFFER
;
...
...
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