2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__COOKIES_DIALOGS_H
|
|
|
|
#define EL__COOKIES_DIALOGS_H
|
|
|
|
|
|
|
|
#include "bfu/hierbox.h"
|
|
|
|
#include "session/session.h"
|
|
|
|
#include "terminal/terminal.h"
|
|
|
|
#include "util/lists.h"
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-07-26 15:39:08 -04:00
|
|
|
extern LIST_OF(struct cookie) cookie_queries;
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
void accept_cookie_dialog(struct session *ses, void *data);
|
|
|
|
extern struct hierbox_browser cookie_browser;
|
|
|
|
void cookie_manager(struct session *);
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|