mirror of
https://github.com/reactos/wine.git
synced 2025-02-07 20:57:39 +00:00
winhttp: Add stub implementation for WinHttpQueryHeaders.
This commit is contained in:
parent
525037d758
commit
9dd04bfc32
@ -281,3 +281,15 @@ BOOL WINAPI WinHttpTimeToSystemTime (LPCWSTR pwszTime, SYSTEMTIME* pst)
|
|||||||
SetLastError(ERROR_NOT_SUPPORTED);
|
SetLastError(ERROR_NOT_SUPPORTED);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* WinHttpQueryHeaders (winhttp.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI WinHttpQueryHeaders (HINTERNET hRequest, DWORD dwInfoLevel, LPCWSTR pwszName,
|
||||||
|
LPVOID lpBuffer, LPDWORD lpdwBufferLength, LPDWORD lpdwIndex)
|
||||||
|
{
|
||||||
|
FIXME("(%d): stub\n", dwInfoLevel);
|
||||||
|
|
||||||
|
SetLastError(ERROR_NOT_SUPPORTED);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
@ stdcall WinHttpOpenRequest(ptr wstr wstr wstr wstr ptr long)
|
@ stdcall WinHttpOpenRequest(ptr wstr wstr wstr wstr ptr long)
|
||||||
@ stub WinHttpQueryAuthSchemes
|
@ stub WinHttpQueryAuthSchemes
|
||||||
@ stdcall WinHttpQueryDataAvailable(ptr ptr)
|
@ stdcall WinHttpQueryDataAvailable(ptr ptr)
|
||||||
@ stub WinHttpQueryHeaders
|
@ stdcall WinHttpQueryHeaders(ptr long wstr ptr ptr ptr)
|
||||||
@ stdcall WinHttpQueryOption(ptr long ptr ptr)
|
@ stdcall WinHttpQueryOption(ptr long ptr ptr)
|
||||||
@ stdcall WinHttpReadData(ptr ptr long ptr)
|
@ stdcall WinHttpReadData(ptr ptr long ptr)
|
||||||
@ stdcall WinHttpReceiveResponse(ptr ptr)
|
@ stdcall WinHttpReceiveResponse(ptr ptr)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user