Commit 22255b32 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Have InternetGetConnectedState always return 'LAN connection'.

parent de7c3003
......@@ -225,8 +225,11 @@ BOOL WINAPI InternetGetLastResponseInfoA(LPDWORD lpdwError,
*/
BOOL WINAPI InternetGetConnectedState(LPDWORD lpdwStatus, DWORD dwReserved)
{
FIXME("Stub\n");
return FALSE;
if (lpdwStatus) {
FIXME("always returning LAN connection.\n");
*lpdwStatus = INTERNET_CONNECTION_LAN;
}
return TRUE;
}
......
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