Mercurial > dillo_port1.3
view src/history.h @ 1173:717058f63429
Removed the experimental font size adjuster patch (it slipped in by mistake)
author | Jorge Arellano Cid <jcid@dillo.org> |
---|---|
date | Mon, 15 Jun 2009 17:50:10 -0400 |
parents | 278bbfd85a02 |
children | 0c5d982c92a0 |
line wrap: on
line source
#ifndef __DILLO_HISTORY_H__ #define __DILLO_HISTORY_H__ #include "url.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ int a_History_add_url(DilloUrl *url); void a_History_set_title_by_url(const DilloUrl *url, const char *title); DilloUrl *a_History_get_url(int idx); const char *a_History_get_title(int idx, int force); const char *a_History_get_title_by_url(const DilloUrl *url, int force); void a_History_freeall(void); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __DILLO_HISTORY_H__ */