Commit fec69301 authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Alexandre Julliard

Simple implementation of InternetAutodial.

parent 96ecd660
......@@ -1776,3 +1776,25 @@ BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
FIXME("STUB\n");
return FALSE;
}
/***********************************************************************
* InternetAutoDial
*
* On windows this function is supposed to dial the default internet
* connection. We don't want to have Wine dial out to the internet so
* we return TRUE by default. It might be nice to check if we are connected.
*
* RETURNS
* TRUE on success
* FALSE on failure
*
*/
BOOL InternetAutoDial(DWORD dwFlags, HWND hwndParent)
{
FIXME("STUB\n");
/* Tell that we are connected to the internet. */
return TRUE;
}
......@@ -81,7 +81,7 @@ init WININET_LibMain
@ stub HttpSendRequestW
@ stub IncrementUrlCacheHeaderData
@ stdcall InternetAttemptConnect(long) InternetAttemptConnect
@ stub InternetAutodial
@ stdcall InternetAutodial(long ptr) InternetAutoDial
@ stub InternetAutodialCallback
@ stub InternetAutodialHangup
@ stdcall InternetCanonicalizeUrlA(str str ptr long) InternetCanonicalizeUrlA
......
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