Module: wine Branch: master Commit: e6ac3499a53e94366ccf3436526e55c68410161f URL: https://gitlab.winehq.org/wine/wine/-/commit/e6ac3499a53e94366ccf3436526e55c...
Author: Francois Gouget fgouget@codeweavers.com Date: Thu Apr 13 10:53:24 2023 +0200
wininet: Add constants for DetectAutoProxyUrl().
---
include/wininet.h | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/include/wininet.h b/include/wininet.h index f1c4e312281..158b005d36c 100644 --- a/include/wininet.h +++ b/include/wininet.h @@ -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);