Commit 98343e32 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

More debug output for InternetGetCookie, added stub for InternetSetCookie.

parent 4d2f173c
......@@ -932,10 +932,27 @@ BOOL WINAPI InternetQueryOptionA(HINTERNET hInternet, DWORD dwOption,
BOOL WINAPI InternetGetCookieA(LPCSTR lpszUrl, LPCSTR lpszCookieName,
LPSTR lpCookieData, LPDWORD lpdwSize)
{
FIXME("Stub\n");
return FALSE;
FIXME("(%s,%s,%p), stub!\n",debugstr_a(lpszUrl),debugstr_a(lpszCookieName),
lpCookieData
);
return FALSE;
}
/***********************************************************************
* InternetSetCookieA (WININET.@)
*
* Sets cookie for the specified url
*
* RETURNS
* TRUE on success
* FALSE on failure
*
*/
BOOL WINAPI InternetSetCookieA(
LPCSTR lpszUrl, LPCSTR lpszCookieName, LPCSTR lpCookieData
) {
FIXME("(%s,%s,%s), stub!\n",debugstr_a(lpszUrl),debugstr_a(lpszCookieName),debugstr_a(lpCookieData));
return FALSE;
}
/***********************************************************************
* GetInternetScheme (internal)
......
......@@ -114,7 +114,7 @@ debug_channels (wininet)
@ stub InternetFindNextFileW
@ stub InternetGetCertByURL
@ stdcall InternetGetConnectedState(ptr long) InternetGetConnectedState
@ stdcall InternetGetCookieA(str str str long) InternetGetCookieA
@ stdcall InternetGetCookieA(str str ptr long) InternetGetCookieA
@ stub InternetGetCookieW
@ stdcall InternetGetLastResponseInfoA(ptr str ptr) InternetGetLastResponseInfoA
@ stub InternetGetLastResponseInfoW
......@@ -133,7 +133,7 @@ debug_channels (wininet)
@ stub InternetReadFileExA
@ stub InternetReadFileExW
@ stub InternetServerPushParse
@ stub InternetSetCookieA
@ stdcall InternetSetCookieA(str str str) InternetSetCookieA
@ stub InternetSetCookieW
@ stub InternetSetDialState
@ stub InternetSetFilePointer
......
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