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
f7538bfe
Commit
f7538bfe
authored
Jul 29, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Jul 29, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Add a stub implementation of INTERNET_OPTION_SUPPRESS_BEHAVIOR.
parent
1a786666
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
internet.c
dlls/wininet/internet.c
+9
-0
No files found.
dlls/wininet/internet.c
View file @
f7538bfe
...
@@ -2765,6 +2765,15 @@ static DWORD set_global_option(DWORD option, void *buf, DWORD size)
...
@@ -2765,6 +2765,15 @@ static DWORD set_global_option(DWORD option, void *buf, DWORD size)
FIXME
(
"INTERNETOPTION_SETTINGS_CHANGED semi-stub
\n
"
);
FIXME
(
"INTERNETOPTION_SETTINGS_CHANGED semi-stub
\n
"
);
collect_connections
(
COLLECT_CONNECTIONS
);
collect_connections
(
COLLECT_CONNECTIONS
);
return
ERROR_SUCCESS
;
return
ERROR_SUCCESS
;
case
INTERNET_OPTION_SUPPRESS_BEHAVIOR
:
FIXME
(
"INTERNET_OPTION_SUPPRESS_BEHAVIOR stub
\n
"
);
if
(
size
!=
sizeof
(
ULONG
))
return
ERROR_INTERNET_BAD_OPTION_LENGTH
;
FIXME
(
"%08x
\n
"
,
*
(
ULONG
*
)
buf
);
return
ERROR_SUCCESS
;
}
}
return
ERROR_INTERNET_INVALID_OPTION
;
return
ERROR_INTERNET_INVALID_OPTION
;
...
...
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