winhttp: Add stub implementation for WinHttpCloseHandle.
This commit is contained in:
parent
058c23f77d
commit
9575564af8
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue