dlls/wininet/internet.c

Ulrich Czekalla ulrich.czekalla at utoronto.ca
Thu Jun 14 10:34:31 CDT 2001


Changelog:
    Ulrich Czekalla <uczekalla at codeweavers.com>
    Stub for InternetGetCookieA
-------------- next part --------------
Index: dlls/wininet/internet.c
===================================================================
RCS file: /home/wine/wine/dlls/wininet/internet.c,v
retrieving revision 1.17
diff -u -w -r1.17 internet.c
--- dlls/wininet/internet.c	2001/05/09 17:31:34	1.17
+++ dlls/wininet/internet.c	2001/06/14 15:30:40
@@ -918,6 +918,24 @@
 
 
 /***********************************************************************
+ *           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
Index: dlls/wininet/wininet.spec
===================================================================
RCS file: /home/wine/wine/dlls/wininet/wininet.spec,v
retrieving revision 1.10
diff -u -w -r1.10 wininet.spec
--- dlls/wininet/wininet.spec	2001/01/06 00:36:43	1.10
+++ dlls/wininet/wininet.spec	2001/06/14 15:30:40
@@ -114,7 +114,7 @@
 @ 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


More information about the wine-patches mailing list