Stub for InternetGetConnectedState.
This commit is contained in:
parent
32ef5a184b
commit
9d3845c565
|
@ -194,6 +194,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)
|
||||
*
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue