1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-13 00:38:32 -04:00
elinks/src/bookmarks/dialogs.h
Jonas Fonseca acf2ec806b Remove empty lines in start of header files
A left over from the CVS Id removal. Also, for a few files, normalize the
order in which things are declared in headers.
2005-11-15 11:33:27 +01:00

39 lines
1.0 KiB
C

#ifndef EL__BOOKMARKS_DIALOGS_H
#define EL__BOOKMARKS_DIALOGS_H
#include "bfu/dialog.h"
#include "bfu/hierbox.h"
#include "terminal/terminal.h"
#include "session/session.h"
extern struct hierbox_browser bookmark_browser;
/* Launch the bookmark manager */
void bookmark_manager(struct session *ses);
/* Launch 'Add bookmark' dialog... */
/* ...with the given title and URL */
void launch_bm_add_dialog(struct terminal *term,
struct dialog_data *parent,
struct session *ses,
unsigned char *title,
unsigned char *url);
/* ...with the current document's title and URL */
void launch_bm_add_doc_dialog(struct terminal *term,
struct dialog_data *parent,
struct session *ses);
/* ...with the selected link's title and URL */
void launch_bm_add_link_dialog(struct terminal *term,
struct dialog_data *parent,
struct session *ses);
void bookmark_terminal_tabs_dialog(struct terminal *term);
/* Free search memorization */
void free_last_searched_bookmark(void);
#endif