Module: wine Branch: master Commit: 9575564af8eae8f455c02bf710a0fd706a8b298b URL: http://source.winehq.org/git/wine.git/?a=commit;h=9575564af8eae8f455c02bf710...
Author: Zac Brown zac@zacbrown.org Date: Mon Jul 7 13:32:14 2008 -0700
winhttp: Add stub implementation for WinHttpCloseHandle.
---
dlls/winhttp/main.c | 11 +++++++++++ dlls/winhttp/winhttp.spec | 2 +- 2 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/dlls/winhttp/main.c b/dlls/winhttp/main.c index 21c1ba3..28eb120 100644 --- a/dlls/winhttp/main.c +++ b/dlls/winhttp/main.c @@ -236,3 +236,14 @@ BOOL WINAPI WinHttpReadData (HINTERNET hInternet, LPVOID lpBuffer, DWORD dwNumbe SetLastError(ERROR_NOT_SUPPORTED); return FALSE; } + +/*********************************************************************** + * WinHttpReadData (winhttp.@) + */ +BOOL WINAPI WinHttpCloseHandle (HINTERNET hInternet) +{ + FIXME("stub\n"); + + SetLastError(ERROR_NOT_SUPPORTED); + return FALSE; +} diff --git a/dlls/winhttp/winhttp.spec b/dlls/winhttp/winhttp.spec index eae8a33..1017c71 100644 --- a/dlls/winhttp/winhttp.spec +++ b/dlls/winhttp/winhttp.spec @@ -4,7 +4,7 @@ @ stdcall -private DllUnregisterServer() @ stub WinHttpAddRequestHeaders @ stdcall WinHttpCheckPlatform() -@ stub WinHttpCloseHandle +@ stdcall WinHttpCloseHandle(ptr) @ stdcall WinHttpConnect(ptr wstr long long) @ stub WinHttpCrackUrl @ stub WinHttpCreateUrl