From 49dd3fb448b7d5bbf047be8551cd3c3e58cefc42 Mon Sep 17 00:00:00 2001 From: Ulrich Czekalla Date: Thu, 14 Jun 2001 19:24:50 +0000 Subject: [PATCH] Stub for InternetGetCookieA. --- dlls/wininet/internet.c | 18 ++++++++++++++++++ dlls/wininet/wininet.spec | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/dlls/wininet/internet.c b/dlls/wininet/internet.c index 2259a463c75..3416e1af0cd 100644 --- a/dlls/wininet/internet.c +++ b/dlls/wininet/internet.c @@ -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 diff --git a/dlls/wininet/wininet.spec b/dlls/wininet/wininet.spec index 7f6c066e92a..1afa8ec8a49 100644 --- a/dlls/wininet/wininet.spec +++ b/dlls/wininet/wininet.spec @@ -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 -- 2.11.4.GIT