mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
winhttp: Add stub implementation for WinHttpConnect.
This commit is contained in:
parent
5db545965f
commit
ca627f5b7d
2 changed files with 14 additions and 1 deletions
|
@ -140,3 +140,16 @@ HINTERNET WINAPI WinHttpOpen(LPCWSTR pwszUserAgent, DWORD dwAccessType,
|
|||
SetLastError(ERROR_NOT_SUPPORTED);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WinHttpConnect (winhttp.@)
|
||||
*/
|
||||
|
||||
HINTERNET WINAPI WinHttpConnect (HINTERNET hSession, LPCWSTR pwszServerName,
|
||||
INTERNET_PORT nServerPort, DWORD dwReserved)
|
||||
{
|
||||
FIXME("(%s, %d, 0x%x): stub\n", debugstr_w(pwszServerName), nServerPort, dwReserved);
|
||||
|
||||
SetLastError(ERROR_NOT_SUPPORTED);
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
@ stub WinHttpAddRequestHeaders
|
||||
@ stdcall WinHttpCheckPlatform()
|
||||
@ stub WinHttpCloseHandle
|
||||
@ stub WinHttpConnect
|
||||
@ stdcall WinHttpConnect(ptr wstr long long)
|
||||
@ stub WinHttpCrackUrl
|
||||
@ stub WinHttpCreateUrl
|
||||
@ stdcall WinHttpDetectAutoProxyConfigUrl(long ptr)
|
||||
|
|
Loading…
Reference in a new issue