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
a8ec0edf
Commit
a8ec0edf
authored
May 15, 2014
by
Hans Leidekker
Committed by
Alexandre Julliard
May 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add missing proxy definitions.
parent
d1dbc024
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
wininet.h
include/wininet.h
+30
-0
No files found.
include/wininet.h
View file @
a8ec0edf
...
...
@@ -1720,6 +1720,36 @@ BOOL WINAPI InternetGetConnectedStateExA(LPDWORD, LPSTR, DWORD, DWORD);
BOOL
WINAPI
InternetGetConnectedStateExW
(
LPDWORD
,
LPWSTR
,
DWORD
,
DWORD
);
#define InternetGetConnectedStateEx WINELIB_NAME_AW(InternetGetConnectedStateEx)
typedef
struct
AutoProxyHelperVtbl
{
BOOL
(
WINAPI
*
IsResolvable
)(
LPSTR
);
DWORD
(
WINAPI
*
GetIPAddress
)(
LPSTR
,
LPDWORD
);
DWORD
(
WINAPI
*
ResolveHostName
)(
LPSTR
,
LPSTR
,
LPDWORD
);
BOOL
(
WINAPI
*
IsInNet
)(
LPSTR
,
LPSTR
,
LPSTR
);
BOOL
(
WINAPI
*
IsResolvableEx
)(
LPSTR
);
DWORD
(
WINAPI
*
GetIPAddressEx
)(
LPSTR
,
LPDWORD
);
DWORD
(
WINAPI
*
ResolveHostNameEx
)(
LPSTR
,
LPSTR
,
LPDWORD
);
BOOL
(
WINAPI
*
IsInNetEx
)(
LPSTR
,
LPSTR
);
DWORD
(
WINAPI
*
SortIpList
)(
LPSTR
,
LPSTR
,
LPDWORD
);
}
AutoProxyHelperVtbl
;
typedef
struct
AutoProxyHelperFunctions
{
const
struct
AutoProxyHelperVtbl
*
lpVtbl
;
}
AutoProxyHelperFunctions
;
typedef
struct
{
DWORD
dwStructSize
;
LPSTR
lpszScriptBuffer
;
DWORD
dwScriptBufferSize
;
}
AUTO_PROXY_SCRIPT_BUFFER
,
*
LPAUTO_PROXY_SCRIPT_BUFFER
;
typedef
BOOL
(
CALLBACK
*
pfnInternetDeInitializeAutoProxyDll
)(
LPSTR
,
DWORD
);
typedef
BOOL
(
CALLBACK
*
pfnInternetGetProxyInfo
)(
LPCSTR
,
DWORD
,
LPSTR
,
DWORD
,
LPSTR
*
,
LPDWORD
);
typedef
BOOL
(
CALLBACK
*
pfnInternetInitializeAutoProxyDll
)(
DWORD
,
LPSTR
,
LPSTR
,
AutoProxyHelperFunctions
*
,
LPAUTO_PROXY_SCRIPT_BUFFER
);
BOOL
WINAPI
InternetInitializeAutoProxyDll
(
DWORD
);
BOOL
WINAPI
DetectAutoProxyUrl
(
LPSTR
,
DWORD
,
DWORD
);
...
...
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