Commit 49dd3fb4 authored by Ulrich Czekalla's avatar Ulrich Czekalla Committed by Alexandre Julliard

Stub for InternetGetCookieA.

parent a57befe7
......@@ -918,6 +918,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)
*
* Get scheme of url
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment