Commit deb49f6f authored by Zac Brown's avatar Zac Brown Committed by Alexandre Julliard

winhttp: Add stub implementation for WinHttpWriteData.

parent 1cdb06c6
...@@ -247,3 +247,15 @@ BOOL WINAPI WinHttpCloseHandle (HINTERNET hInternet) ...@@ -247,3 +247,15 @@ BOOL WINAPI WinHttpCloseHandle (HINTERNET hInternet)
SetLastError(ERROR_NOT_SUPPORTED); SetLastError(ERROR_NOT_SUPPORTED);
return FALSE; return FALSE;
} }
/***********************************************************************
* WinHttpWriteData (winhttp.@)
*/
BOOL WINAPI WinHttpWriteData (HINTERNET hRequest, LPCVOID lpBuffer,
DWORD dwNumberOfBytesToWrite, LPDWORD lpdwNumberOfBytesWritten)
{
FIXME("(%p, %d, %p): stub\n", lpBuffer, dwNumberOfBytesToWrite, lpdwNumberOfBytesWritten);
SetLastError(ERROR_NOT_SUPPORTED);
return FALSE;
}
...@@ -28,4 +28,4 @@ ...@@ -28,4 +28,4 @@
@ stub WinHttpSetTimeouts @ stub WinHttpSetTimeouts
@ stub WinHttpTimeFromSystemTime @ stub WinHttpTimeFromSystemTime
@ stub WinHttpTimeToSystemTime @ stub WinHttpTimeToSystemTime
@ stub WinHttpWriteData @ stdcall WinHttpWriteData(ptr ptr 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