[go: up one dir, main page]

File: history.h

package info (click to toggle)
dillo 0.8.3-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,168 kB
  • ctags: 3,987
  • sloc: ansic: 32,778; sh: 3,401; makefile: 251; perl: 17
file content (26 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#ifndef __DILLO_HISTORY_H__
#define __DILLO_HISTORY_H__

#include <glib.h>

#include "url.h"


#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

int a_History_add_url(DilloUrl *url);
int a_History_set_title(gint idx, const gchar *title);
DilloUrl *a_History_get_url(gint idx);
const gchar *a_History_get_title(gint idx);
const gchar *a_History_get_title_by_url(DilloUrl *url, gint force);
void a_History_free(void);


#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* __DILLO_HISTORY_H__ */