Mercurial > dillo_port1.3
view src/history.h @ 2149:9d1ff8be799c tip
disable 'Found font:' messages
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> |
---|---|
date | Sun, 24 Jul 2011 22:17:57 +0200 |
parents | 0c5d982c92a0 |
children |
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); const 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__ */