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 61a5c102..13501ded 100644 --- a/src/bookmarks.h +++ b/src/bookmarks.h | |||
@@ -56,6 +56,7 @@ struct Impl_Bookmark { | |||
56 | iLocalDef uint32_t id_Bookmark (const iBookmark *d) { return d->node.key; } | 56 | iLocalDef uint32_t id_Bookmark (const iBookmark *d) { return d->node.key; } |
57 | iLocalDef iBool isFolder_Bookmark (const iBookmark *d) { return isEmpty_String(&d->url); } | 57 | iLocalDef iBool isFolder_Bookmark (const iBookmark *d) { return isEmpty_String(&d->url); } |
58 | 58 | ||
59 | iBool hasParent_Bookmark (const iBookmark *, uint32_t parentId); | ||
59 | int depth_Bookmark (const iBookmark *); | 60 | int depth_Bookmark (const iBookmark *); |
60 | iBool hasTag_Bookmark (const iBookmark *, const char *tag); | 61 | iBool hasTag_Bookmark (const iBookmark *, const char *tag); |
61 | void addTag_Bookmark (iBookmark *, const char *tag); | 62 | void addTag_Bookmark (iBookmark *, const char *tag); |
@@ -78,6 +79,8 @@ iLocalDef void addOrRemoveTag_Bookmark(iBookmark *d, const char *tag, iBool add) | |||
78 | int cmpTitleAscending_Bookmark (const iBookmark **, const iBookmark **); | 79 | int cmpTitleAscending_Bookmark (const iBookmark **, const iBookmark **); |
79 | int cmpTree_Bookmark (const iBookmark **, const iBookmark **); | 80 | int cmpTree_Bookmark (const iBookmark **, const iBookmark **); |
80 | 81 | ||
82 | iBool filterInsideFolder_Bookmark (void *parentFolder, const iBookmark *); | ||
83 | |||
81 | /*----------------------------------------------------------------------------------------------*/ | 84 | /*----------------------------------------------------------------------------------------------*/ |
82 | 85 | ||
83 | iDeclareType(Bookmarks) | 86 | iDeclareType(Bookmarks) |