winhttp: Add stub implementation for WinHttpReceiveResponse.
This commit is contained in:
parent
2d8698918f
commit
000fe7058d
|
@ -202,3 +202,14 @@ BOOL WINAPI WinHttpQueryDataAvailable (HINTERNET hInternet, LPDWORD lpdwNumberOf
|
|||
SetLastError(ERROR_NOT_SUPPORTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WinHttpReceiveResponse (winhttp.@)
|
||||
*/
|
||||
BOOL WINAPI WinHttpReceiveResponse (HINTERNET hRequest, LPVOID lpReserved)
|
||||
{
|
||||
FIXME("stub\n");
|
||||
|
||||
SetLastError(ERROR_NOT_SUPPORTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
@ stub WinHttpQueryHeaders
|
||||
@ stdcall WinHttpQueryOption(ptr long ptr ptr)
|
||||
@ stub WinHttpReadData
|
||||
@ stub WinHttpReceiveResponse
|
||||
@ stdcall WinHttpReceiveResponse(ptr ptr)
|
||||
@ stdcall WinHttpSendRequest(ptr wstr long ptr long long ptr)
|
||||
@ stub WinHttpSetCredentials
|
||||
@ stub WinHttpSetDefaultProxyConfiguration
|
||||
|
|
Loading…
Reference in New Issue