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
e43cda6b
Commit
e43cda6b
authored
Jun 23, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Win64 compatibility fixes.
parent
62337044
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
internet.c
dlls/wininet/internet.c
+14
-14
No files found.
dlls/wininet/internet.c
View file @
e43cda6b
...
...
@@ -2258,44 +2258,44 @@ BOOL WINAPI InternetSetOptionW(HINTERNET hInternet, DWORD dwOption,
break
;
case
INTERNET_OPTION_ERROR_MASK
:
{
unsigned
long
flags
=*
(
unsigned
long
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_ERROR_MASK(%
ld): STUB
\n
"
,
flags
);
ULONG
flags
=
*
(
ULONG
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_ERROR_MASK(%
d): STUB
\n
"
,
flags
);
}
break
;
case
INTERNET_OPTION_CODEPAGE
:
{
unsigned
long
codepage
=*
(
unsigned
long
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_CODEPAGE (%
ld): STUB
\n
"
,
codepage
);
ULONG
codepage
=
*
(
ULONG
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_CODEPAGE (%
d): STUB
\n
"
,
codepage
);
}
break
;
case
INTERNET_OPTION_REQUEST_PRIORITY
:
{
unsigned
long
priority
=*
(
unsigned
long
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_REQUEST_PRIORITY (%
ld): STUB
\n
"
,
priority
);
ULONG
priority
=
*
(
ULONG
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_REQUEST_PRIORITY (%
d): 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
);
ULONG
connecttimeout
=
*
(
ULONG
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_CONNECT_TIMEOUT (%
d): 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
);
ULONG
receivetimeout
=
*
(
ULONG
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_DATA_RECEIVE_TIMEOUT (%
d): STUB
\n
"
,
receivetimeout
);
}
break
;
case
INTERNET_OPTION_MAX_CONNS_PER_SERVER
:
{
unsigned
long
conns
=*
(
unsigned
long
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_MAX_CONNS_PER_SERVER (%
ld): STUB
\n
"
,
conns
);
ULONG
conns
=
*
(
ULONG
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_MAX_CONNS_PER_SERVER (%
d): STUB
\n
"
,
conns
);
}
break
;
case
INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER
:
{
unsigned
long
conns
=*
(
unsigned
long
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER (%
ld): STUB
\n
"
,
conns
);
ULONG
conns
=
*
(
ULONG
*
)
lpBuffer
;
FIXME
(
"Option INTERNET_OPTION_MAX_CONNS_PER_1_0_SERVER (%
d): STUB
\n
"
,
conns
);
}
break
;
case
INTERNET_OPTION_RESET_URLCACHE_SESSION
:
...
...
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