Dillo v3.1.1-46-g8a360e32
Loading...
Searching...
No Matches
bookmark.h
Go to the documentation of this file.
1#ifndef __BOOKMARK_H__
2#define __BOOKMARK_H__
3
4#include "bw.h"
5
6#ifdef __cplusplus
7extern "C" {
8#endif /* __cplusplus */
9
10void a_Bookmarks_add(BrowserWindow *bw, const DilloUrl *url);
11
12/* TODO: this is for testing purposes */
13void a_Bookmarks_chat_add(BrowserWindow *Bw, char *Cmd, char *answer);
14
15#ifdef __cplusplus
16}
17#endif /* __cplusplus */
18
19#endif /* __BOOKMARK_H__ */
void a_Bookmarks_add(BrowserWindow *bw, const DilloUrl *url)
Add the new bookmark through the bookmarks server.
Definition bookmark.c:71
void a_Bookmarks_chat_add(BrowserWindow *Bw, char *Cmd, char *answer)
Have a short chat with the bookmarks server, and finally ask it to add a new bookmark.
Definition bookmark.c:27
Contains the specific data for a single window.
Definition bw.h:27
Definition url.h:88