summaryrefslogtreecommitdiff
path: root/src/bookmarks.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bookmarks.h')
-rw-r--r--src/bookmarks.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bookmarks.h b/src/bookmarks.h
index 61a5c102..13501ded 100644
--- a/src/bookmarks.h
+++ b/src/bookmarks.h
@@ -56,6 +56,7 @@ struct Impl_Bookmark {
56iLocalDef uint32_t id_Bookmark (const iBookmark *d) { return d->node.key; } 56iLocalDef uint32_t id_Bookmark (const iBookmark *d) { return d->node.key; }
57iLocalDef iBool isFolder_Bookmark (const iBookmark *d) { return isEmpty_String(&d->url); } 57iLocalDef iBool isFolder_Bookmark (const iBookmark *d) { return isEmpty_String(&d->url); }
58 58
59iBool hasParent_Bookmark (const iBookmark *, uint32_t parentId);
59int depth_Bookmark (const iBookmark *); 60int depth_Bookmark (const iBookmark *);
60iBool hasTag_Bookmark (const iBookmark *, const char *tag); 61iBool hasTag_Bookmark (const iBookmark *, const char *tag);
61void addTag_Bookmark (iBookmark *, const char *tag); 62void addTag_Bookmark (iBookmark *, const char *tag);
@@ -78,6 +79,8 @@ iLocalDef void addOrRemoveTag_Bookmark(iBookmark *d, const char *tag, iBool add)
78int cmpTitleAscending_Bookmark (const iBookmark **, const iBookmark **); 79int cmpTitleAscending_Bookmark (const iBookmark **, const iBookmark **);
79int cmpTree_Bookmark (const iBookmark **, const iBookmark **); 80int cmpTree_Bookmark (const iBookmark **, const iBookmark **);
80 81
82iBool filterInsideFolder_Bookmark (void *parentFolder, const iBookmark *);
83
81/*----------------------------------------------------------------------------------------------*/ 84/*----------------------------------------------------------------------------------------------*/
82 85
83iDeclareType(Bookmarks) 86iDeclareType(Bookmarks)