Simple implementation of InternetAutodial.

This commit is contained in:
Roderick Colenbrander 2002-07-22 20:34:41 +00:00 committed by Alexandre Julliard
parent 96ecd660ec
commit fec6930127
2 changed files with 23 additions and 1 deletions

View file

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

View file

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