Commit 9d3845c5 authored by Gerard Patel's avatar Gerard Patel Committed by Alexandre Julliard

Stub for InternetGetConnectedState.

parent 32ef5a18
......@@ -195,6 +195,24 @@ BOOL WINAPI InternetGetLastResponseInfoA(LPDWORD lpdwError,
/***********************************************************************
* InternetGetConnectedState (WININET.103)
*
* Return connected state
*
* RETURNS
* TRUE if connected
* if lpdwStatus is not null, return the status (off line,
* modem, lan...) in it.
* FALSE if not connected
*/
BOOL WINAPI InternetGetConnectedState(LPDWORD lpdwStatus, DWORD dwReserved)
{
FIXME("Stub\n");
return FALSE;
}
/***********************************************************************
* InternetConnectA (WININET.93)
*
* Open a ftp, gopher or http session
......@@ -921,7 +939,7 @@ BOOL INTERNET_InsertWorkRequest(LPWORKREQUEST lpWorkRequest)
/***********************************************************************
* INTERNET_GetWokkRequest (internal)
* INTERNET_GetWorkRequest (internal)
*
* Retrieves work request from queue
*
......
......@@ -106,7 +106,7 @@ init WININET_LibMain
@ stdcall InternetFindNextFileA(ptr ptr) InternetFindNextFileA
@ stub InternetFindNextFileW
@ stub InternetGetCertByURL
@ stub InternetGetConnectedState
@ stdcall InternetGetConnectedState(ptr long) InternetGetConnectedState
@ stub InternetGetCookieA
@ stub InternetGetCookieW
@ stdcall InternetGetLastResponseInfoA(ptr str ptr) InternetGetLastResponseInfoA
......
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