comparison src/history_list.h @ 1431:7e180091e0b7

More gboolean and tidy up.
author zas_
date Sat, 14 Mar 2009 11:26:43 +0000
parents 8b89e3ff286b
children
comparison
equal deleted inserted replaced
1430:7718e351bc45 1431:7e180091e0b7
12 #ifndef HISTORY_LIST_H 12 #ifndef HISTORY_LIST_H
13 #define HISTORY_LIST_H 13 #define HISTORY_LIST_H
14 14
15 /* history lists */ 15 /* history lists */
16 16
17 gint history_list_load(const gchar *path); 17 gboolean history_list_load(const gchar *path);
18 gint history_list_save(const gchar *path); 18 gboolean history_list_save(const gchar *path);
19 19
20 void history_list_free_key(const gchar *key); 20 void history_list_free_key(const gchar *key);
21 21
22 void history_list_add_to_key(const gchar *key, const gchar *path, gint max); 22 void history_list_add_to_key(const gchar *key, const gchar *path, gint max);
23 23