2006-07-13 16:46:02 +04:00
|
|
|
/*
|
2006-11-27 18:35:18 +03:00
|
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
2006-07-13 16:46:02 +04:00
|
|
|
* 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;
|
|
|
|
|
2006-07-16 20:10:43 +04:00
|
|
|
bool cookies_update(const char *domain, const struct cookie_data *data);
|
2006-07-13 16:46:02 +04:00
|
|
|
|
|
|
|
#endif
|