Commit 7a39e23d authored by Zac Brown's avatar Zac Brown Committed by Alexandre Julliard

winhttp: Add stub implementation for WinHttpQueryOption.

parent d4f06851
......@@ -180,3 +180,14 @@ BOOL WINAPI WinHttpSendRequest (HINTERNET hRequest, LPCWSTR pwszHeaders, DWORD d
SetLastError(ERROR_NOT_SUPPORTED);
return FALSE;
}
/***********************************************************************
* WinHttpQueryOption (winhttp.@)
*/
BOOL WINAPI WinHttpQueryOption (HINTERNET hInternet, DWORD dwOption, LPVOID lpBuffer, LPDWORD lpdwBufferLength)
{
FIXME("(%d): stub\n", dwOption);
SetLastError(ERROR_NOT_SUPPORTED);
return FALSE;
}
......@@ -17,7 +17,7 @@
@ stub WinHttpQueryAuthSchemes
@ stub WinHttpQueryDataAvailable
@ stub WinHttpQueryHeaders
@ stub WinHttpQueryOption
@ stdcall WinHttpQueryOption(ptr long ptr ptr)
@ stub WinHttpReadData
@ stub WinHttpReceiveResponse
@ stdcall WinHttpSendRequest(ptr wstr long ptr long long ptr)
......
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