Commit 056d2a44 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

"InternetAutoDial" should be "InternetAutodial".

parent 6758f027
...@@ -2271,7 +2271,7 @@ BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle) ...@@ -2271,7 +2271,7 @@ BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
/*********************************************************************** /***********************************************************************
* InternetAutoDial * InternetAutodial
* *
* On windows this function is supposed to dial the default internet * 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 * connection. We don't want to have Wine dial out to the internet so
...@@ -2282,7 +2282,7 @@ BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle) ...@@ -2282,7 +2282,7 @@ BOOL WINAPI InternetUnlockRequestFile( HANDLE hLockHandle)
* FALSE on failure * FALSE on failure
* *
*/ */
BOOL WINAPI InternetAutoDial(DWORD dwFlags, HWND hwndParent) BOOL WINAPI InternetAutodial(DWORD dwFlags, HWND hwndParent)
{ {
FIXME("STUB\n"); FIXME("STUB\n");
...@@ -2291,9 +2291,9 @@ BOOL WINAPI InternetAutoDial(DWORD dwFlags, HWND hwndParent) ...@@ -2291,9 +2291,9 @@ BOOL WINAPI InternetAutoDial(DWORD dwFlags, HWND hwndParent)
} }
/*********************************************************************** /***********************************************************************
* InternetAutoDialHangup * InternetAutodialHangup
* *
* Hangs up an connection made with InternetAutoDial * Hangs up an connection made with InternetAutodial
* *
* PARAM * PARAM
* dwReserved * dwReserved
......
...@@ -81,7 +81,7 @@ ...@@ -81,7 +81,7 @@
@ stdcall HttpSendRequestW(ptr wstr long ptr long) HttpSendRequestW @ stdcall HttpSendRequestW(ptr wstr long ptr long) HttpSendRequestW
@ stub IncrementUrlCacheHeaderData @ stub IncrementUrlCacheHeaderData
@ stdcall InternetAttemptConnect(long) InternetAttemptConnect @ stdcall InternetAttemptConnect(long) InternetAttemptConnect
@ stdcall InternetAutodial(long ptr) InternetAutoDial @ stdcall InternetAutodial(long ptr) InternetAutodial
@ stub InternetAutodialCallback @ stub InternetAutodialCallback
@ stdcall InternetAutodialHangup(long) InternetAutodialHangup @ stdcall InternetAutodialHangup(long) InternetAutodialHangup
@ stdcall InternetCanonicalizeUrlA(str str ptr long) InternetCanonicalizeUrlA @ stdcall InternetCanonicalizeUrlA(str str ptr long) InternetCanonicalizeUrlA
......
...@@ -1416,7 +1416,7 @@ INTERNETAPI DWORD WINAPI InternetHangUp(DWORD ,DWORD); ...@@ -1416,7 +1416,7 @@ INTERNETAPI DWORD WINAPI InternetHangUp(DWORD ,DWORD);
INTERNETAPI BOOL WINAPI InternetGoOnlineA(LPSTR ,HWND ,DWORD); INTERNETAPI BOOL WINAPI InternetGoOnlineA(LPSTR ,HWND ,DWORD);
INTERNETAPI BOOL WINAPI InternetGoOnlineW(LPWSTR ,HWND ,DWORD); INTERNETAPI BOOL WINAPI InternetGoOnlineW(LPWSTR ,HWND ,DWORD);
#define InternetGoOnline WINELIB_NAME_AW(InternetGoOnline) #define InternetGoOnline WINELIB_NAME_AW(InternetGoOnline)
INTERNETAPI BOOL WINAPI InternetAutodial(DWORD ,DWORD); INTERNETAPI BOOL WINAPI InternetAutodial(DWORD,HWND);
#define INTERNET_AUTODIAL_FORCE_ONLINE 1 #define INTERNET_AUTODIAL_FORCE_ONLINE 1
#define INTERNET_AUTODIAL_FORCE_UNATTENDED 2 #define INTERNET_AUTODIAL_FORCE_UNATTENDED 2
......
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