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
10199125
Commit
10199125
authored
Feb 11, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Feb 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Print better stubs for the internet options IE7 uses.
parent
ff4a3f3d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
2 deletions
+34
-2
internet.c
dlls/wininet/internet.c
+29
-2
wininet.h
include/wininet.h
+5
-0
No files found.
dlls/wininet/internet.c
View file @
10199125
...
...
@@ -2367,8 +2367,35 @@ BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
case
INTERNET_OPTION_DISABLE_AUTODIAL
:
FIXME
(
"Option INTERNET_OPTION_DISABLE_AUTODIAL; STUB
\n
"
);
break
;
case
86
:
FIXME
(
"86
\n
"
);
case
INTERNET_OPTION_HTTP_DECODING
:
FIXME
(
"INTERNET_OPTION_HTTP_DECODING; STUB
\n
"
);
INTERNET_SetLastError
(
ERROR_INTERNET_INVALID_OPTION
);
ret
=
FALSE
;
break
;
case
INTERNET_OPTION_COOKIES_3RD_PARTY
:
FIXME
(
"INTERNET_OPTION_COOKIES_3RD_PARTY; STUB
\n
"
);
INTERNET_SetLastError
(
ERROR_INTERNET_INVALID_OPTION
);
ret
=
FALSE
;
break
;
case
INTERNET_OPTION_SEND_UTF8_SERVERNAME_TO_PROXY
:
FIXME
(
"INTERNET_OPTION_SEND_UTF8_SERVERNAME_TO_PROXY; STUB
\n
"
);
INTERNET_SetLastError
(
ERROR_INTERNET_INVALID_OPTION
);
ret
=
FALSE
;
break
;
case
INTERNET_OPTION_CODEPAGE_PATH
:
FIXME
(
"INTERNET_OPTION_CODEPAGE_PATH; STUB
\n
"
);
INTERNET_SetLastError
(
ERROR_INTERNET_INVALID_OPTION
);
ret
=
FALSE
;
break
;
case
INTERNET_OPTION_CODEPAGE_EXTRA
:
FIXME
(
"INTERNET_OPTION_CODEPAGE_EXTRA; STUB
\n
"
);
INTERNET_SetLastError
(
ERROR_INTERNET_INVALID_OPTION
);
ret
=
FALSE
;
break
;
case
INTERNET_OPTION_IDN
:
FIXME
(
"INTERNET_OPTION_IDN; STUB
\n
"
);
INTERNET_SetLastError
(
ERROR_INTERNET_INVALID_OPTION
);
ret
=
FALSE
;
break
;
default:
FIXME
(
"Option %d STUB
\n
"
,
dwOption
);
...
...
include/wininet.h
View file @
10199125
...
...
@@ -540,6 +540,7 @@ BOOLAPI InternetUnlockRequestFile(HANDLE);
#define INTERNET_OPTION_ERROR_MASK 62
#define INTERNET_OPTION_FROM_CACHE_TIMEOUT 63
#define INTERNET_OPTION_BYPASS_EDITED_ENTRY 64
#define INTERNET_OPTION_HTTP_DECODING 65
#define INTERNET_OPTION_DIAGNOSTIC_SOCKET_INFO 67
#define INTERNET_OPTION_CODEPAGE 68
#define INTERNET_OPTION_CACHE_TIMESTAMPS 69
...
...
@@ -571,6 +572,10 @@ BOOLAPI InternetUnlockRequestFile(HANDLE);
#define INTERNET_OPTION_PROXY_SETTINGS_CHANGED 95
#define INTERNET_OPTION_DATAFILE_EXT 96
#define INTERNET_OPTION_CODEPAGE_PATH 100
#define INTERNET_OPTION_CODEPAGE_EXTRA 101
#define INTERNET_OPTION_IDN 102
#define INTERNET_FIRST_OPTION INTERNET_OPTION_CALLBACK
#define INTERNET_LAST_OPTION INTERNET_OPTION_DATAFILE_EXT
...
...
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