From 000fe7058dc08aee65bfc9af95fb9a2131acd738 Mon Sep 17 00:00:00 2001 From: Zac Brown Date: Mon, 7 Jul 2008 13:20:49 -0700 Subject: [PATCH] winhttp: Add stub implementation for WinHttpReceiveResponse. --- dlls/winhttp/main.c | 11 +++++++++++ dlls/winhttp/winhttp.spec | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/dlls/winhttp/main.c b/dlls/winhttp/main.c index 79f540bb1d0..519c24c8959 100644 --- a/dlls/winhttp/main.c +++ b/dlls/winhttp/main.c @@ -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; +} diff --git a/dlls/winhttp/winhttp.spec b/dlls/winhttp/winhttp.spec index 9836b4930b8..ee7e8cf2261 100644 --- a/dlls/winhttp/winhttp.spec +++ b/dlls/winhttp/winhttp.spec @@ -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