winhttp: Add a stub implementation of WinHttpDetectAutoProxyConfigUrl.

This commit is contained in:
Hans Leidekker 2008-03-05 22:04:04 +01:00 committed by Alexandre Julliard
parent 41f36c49e0
commit 3e3ce1fa5e
3 changed files with 14 additions and 1 deletions

View file

@ -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.@)
*/

View file

@ -8,7 +8,7 @@
@ stub WinHttpConnect
@ stub WinHttpCrackUrl
@ stub WinHttpCreateUrl
@ stub WinHttpDetectAutoProxyConfigUrl
@ stdcall WinHttpDetectAutoProxyConfigUrl(long ptr)
@ stub WinHttpGetDefaultProxyConfiguration
@ stdcall WinHttpGetIEProxyConfigForCurrentUser(ptr)
@ stub WinHttpGetProxyForUrl

View file

@ -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;