1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

wininet: Add constants for DetectAutoProxyUrl().

This commit is contained in:
Francois Gouget 2023-04-13 10:53:24 +02:00 committed by Alexandre Julliard
parent cd9f3e5d05
commit e6ac3499a5

View file

@ -1776,6 +1776,9 @@ typedef BOOL (CALLBACK *pfnInternetGetProxyInfo)(LPCSTR, DWORD, LPSTR, DWORD, LP
typedef BOOL (CALLBACK *pfnInternetInitializeAutoProxyDll)(DWORD, LPSTR, LPSTR, AutoProxyHelperFunctions *,
LPAUTO_PROXY_SCRIPT_BUFFER);
#define PROXY_AUTO_DETECT_TYPE_DHCP 1
#define PROXY_AUTO_DETECT_TYPE_DNS_A 2
BOOL WINAPI InternetInitializeAutoProxyDll(DWORD);
BOOL WINAPI DetectAutoProxyUrl(LPSTR, DWORD, DWORD);