Simple implementation of InternetAutodial.
This commit is contained in:
parent
96ecd660ec
commit
fec6930127
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue