mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
More debug output for InternetGetCookie, added stub for InternetSetCookie.
This commit is contained in:
parent
4d2f173ce3
commit
98343e325c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user