winhttp: Add stub implementation for WinHttpSetOption.
This commit is contained in:
parent
000fe7058d
commit
cb5908fcb7
|
@ -213,3 +213,14 @@ BOOL WINAPI WinHttpReceiveResponse (HINTERNET hRequest, LPVOID lpReserved)
|
|||
SetLastError(ERROR_NOT_SUPPORTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WinHttpSetOption (winhttp.@)
|
||||
*/
|
||||
BOOL WINAPI WinHttpSetOption (HINTERNET hInternet, DWORD dwOption, LPVOID lpBuffer, DWORD dwBufferLength)
|
||||
{
|
||||
FIXME("stub\n");
|
||||
|
||||
SetLastError(ERROR_NOT_SUPPORTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
@ stdcall WinHttpSendRequest(ptr wstr long ptr long long ptr)
|
||||
@ stub WinHttpSetCredentials
|
||||
@ stub WinHttpSetDefaultProxyConfiguration
|
||||
@ stub WinHttpSetOption
|
||||
@ stdcall WinHttpSetOption(ptr long ptr long)
|
||||
@ stub WinHttpSetStatusCallback
|
||||
@ stub WinHttpSetTimeouts
|
||||
@ stub WinHttpTimeFromSystemTime
|
||||
|
|
Loading…
Reference in New Issue