diff options
Diffstat (limited to 'src/bookmarks.h')
-rw-r--r-- | src/bookmarks.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bookmarks.h b/src/bookmarks.h index e32f6bef..2572e3b2 100644 --- a/src/bookmarks.h +++ b/src/bookmarks.h | |||
@@ -11,6 +11,7 @@ struct Impl_Bookmark { | |||
11 | iString url; | 11 | iString url; |
12 | iString title; | 12 | iString title; |
13 | iString tags; | 13 | iString tags; |
14 | iChar icon; | ||
14 | iTime when; | 15 | iTime when; |
15 | }; | 16 | }; |
16 | 17 | ||
@@ -21,6 +22,8 @@ void clear_Bookmarks (iBookmarks *); | |||
21 | void load_Bookmarks (iBookmarks *, const char *dirPath); | 22 | void load_Bookmarks (iBookmarks *, const char *dirPath); |
22 | void save_Bookmarks (const iBookmarks *, const char *dirPath); | 23 | void save_Bookmarks (const iBookmarks *, const char *dirPath); |
23 | 24 | ||
25 | void add_Bookmarks (iBookmarks *, const iString *url, const iString *title, const iString *tags, iChar icon); | ||
26 | |||
24 | typedef iBool (*iBookmarksFilterFunc) (const iBookmark *); | 27 | typedef iBool (*iBookmarksFilterFunc) (const iBookmark *); |
25 | typedef int (*iBookmarksCompareFunc)(const iBookmark **, const iBookmark **); | 28 | typedef int (*iBookmarksCompareFunc)(const iBookmark **, const iBookmark **); |
26 | 29 | ||