Commit b39c3545 authored by Dan Wolf's avatar Dan Wolf Committed by Alexandre Julliard

Implemented a stub for DetectAutoProxyUrl.

parent 013f8946
......@@ -189,6 +189,23 @@ BOOL WINAPI InternetInitializeAutoProxyDll(DWORD dwReserved)
return FALSE;
}
/***********************************************************************
* DetectAutoProxyUrl (WININET.@)
*
* Auto detect the proxy url
*
* RETURNS
* FALSE on failure
*
*/
BOOL WINAPI DetectAutoProxyUrl(LPSTR lpszAutoProxyUrl,
DWORD dwAutoProxyUrlLength, DWORD dwDetectFlags)
{
FIXME("STUB\n");
INTERNET_SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/***********************************************************************
* InternetOpenA (WININET.@)
......
......@@ -12,6 +12,7 @@
@ stub DeleteUrlCacheContainerW
@ stdcall DeleteUrlCacheEntry(str)
@ stdcall DeleteUrlCacheGroup(double long ptr) DeleteUrlCacheGroup
@ stdcall DetectAutoProxyUrl(str long long)
@ stdcall DllInstall(long ptr) WININET_DllInstall
@ stub FindCloseUrlCache
@ stub FindFirstUrlCacheContainerA
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment