summaryrefslogtreecommitdiff
path: root/desktop/cookies.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/cookies.h')
-rw-r--r--desktop/cookies.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/desktop/cookies.h b/desktop/cookies.h
new file mode 100644
index 000000000..94d74dd50
--- /dev/null
+++ b/desktop/cookies.h
@@ -0,0 +1,21 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2006 Richard Wilson <info@tinct.net>
+ */
+
+/** \file
+ * Cookies (interface).
+ */
+
+#ifndef _NETSURF_DESKTOP_COOKIES_H_
+#define _NETSURF_DESKTOP_COOKIES_H_
+
+#include <stdbool.h>
+
+struct cookie_data;
+
+bool cookies_update(const struct cookie_data *data);
+
+#endif