Skip to content
Snippets Groups Projects
Commit 49dd3fb4 authored by Ulrich Czekalla's avatar Ulrich Czekalla Committed by Alexandre Julliard
Browse files

Stub for InternetGetCookieA.

parent a57befe7
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment