winhttp: Add a stub implementation of WinHttpDetectAutoProxyConfigUrl.
This commit is contained in:
parent
41f36c49e0
commit
3e3ce1fa5e
|
@ -93,6 +93,17 @@ BOOL WINAPI WinHttpCheckPlatform(void)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WinHttpDetectAutoProxyConfigUrl (winhttp.@)
|
||||
*/
|
||||
BOOL WINAPI WinHttpDetectAutoProxyConfigUrl(DWORD flags, LPWSTR *url)
|
||||
{
|
||||
FIXME("(%x %p)\n", flags, url);
|
||||
|
||||
SetLastError(ERROR_WINHTTP_AUTODETECTION_FAILED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WinHttpGetIEProxyConfigForCurrentUser (winhttp.@)
|
||||
*/
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
@ stub WinHttpConnect
|
||||
@ stub WinHttpCrackUrl
|
||||
@ stub WinHttpCreateUrl
|
||||
@ stub WinHttpDetectAutoProxyConfigUrl
|
||||
@ stdcall WinHttpDetectAutoProxyConfigUrl(long ptr)
|
||||
@ stub WinHttpGetDefaultProxyConfiguration
|
||||
@ stdcall WinHttpGetIEProxyConfigForCurrentUser(ptr)
|
||||
@ stub WinHttpGetProxyForUrl
|
||||
|
|
|
@ -60,6 +60,8 @@ typedef int INTERNET_SCHEME, *LPINTERNET_SCHEME;
|
|||
|
||||
#define WINHTTP_ERROR_BASE 12000
|
||||
|
||||
#define ERROR_WINHTTP_AUTODETECTION_FAILED (WINHTTP_ERROR_BASE + 180)
|
||||
|
||||
typedef struct
|
||||
{
|
||||
DWORD dwStructSize;
|
||||
|
|
Loading…
Reference in New Issue