summaryrefslogtreecommitdiff
path: root/src/visited.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-08-20 15:34:48 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-08-20 15:34:48 +0300
commitde978eb32636804038567dcaaba4a9eebf24dc1c (patch)
tree7071fe28df52945c5ace7bbb8e70996442186cc1 /src/visited.h
parente8f5fd342e069643d0fc4b2163713cf8788ca5d6 (diff)
SidebarWidget: Added history items; context menu
Diffstat (limited to 'src/visited.h')
-rw-r--r--src/visited.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/visited.h b/src/visited.h
index 2f8382c7..25047383 100644
--- a/src/visited.h
+++ b/src/visited.h
@@ -2,7 +2,7 @@
2 2
3#include "gmrequest.h" 3#include "gmrequest.h"
4 4
5#include <the_Foundation/array.h> 5#include <the_Foundation/ptrarray.h>
6#include <the_Foundation/string.h> 6#include <the_Foundation/string.h>
7#include <the_Foundation/time.h> 7#include <the_Foundation/time.h>
8 8
@@ -23,3 +23,6 @@ void save_Visited (const iVisited *, const char *dirPath);
23 23
24iTime urlVisitTime_Visited (const iVisited *, const iString *url); 24iTime urlVisitTime_Visited (const iVisited *, const iString *url);
25void visitUrl_Visited (iVisited *, const iString *url); /* adds URL to the visited URLs set */ 25void visitUrl_Visited (iVisited *, const iString *url); /* adds URL to the visited URLs set */
26void removeUrl_Visited (iVisited *, const iString *url);
27
28const iPtrArray * list_Visited (const iVisited *, size_t count); /* returns collected */