Stub for InternetGetCookieA.
This commit is contained in:
parent
a57befe72d
commit
49dd3fb448
|
@ -917,6 +917,24 @@ BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* InternetGetCookieA
|
||||
*
|
||||
* Retrieve cookie from the specified url
|
||||
*
|
||||
* RETURNS
|
||||
* TRUE on success
|
||||
* FALSE on failure
|
||||
*
|
||||
*/
|
||||
BOOLAPI InternetGetCookieA(LPCSTR lpszUrl, LPCSTR lpszCookieName,
|
||||
LPSTR lpCookieData, LPDWORD lpdwSize)
|
||||
{
|
||||
FIXME("Stub\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* GetInternetScheme (internal)
|
||||
*
|
||||
|
|
|
@ -114,7 +114,7 @@ debug_channels (wininet)
|
|||
@ stub InternetFindNextFileW
|
||||
@ stub InternetGetCertByURL
|
||||
@ stdcall InternetGetConnectedState(ptr long) InternetGetConnectedState
|
||||
@ stub InternetGetCookieA
|
||||
@ stdcall InternetGetCookieA(str str str long) InternetGetCookieA
|
||||
@ stub InternetGetCookieW
|
||||
@ stdcall InternetGetLastResponseInfoA(ptr str ptr) InternetGetLastResponseInfoA
|
||||
@ stub InternetGetLastResponseInfoW
|
||||
|
|
Loading…
Reference in New Issue