comparison mcabber/src/settings.h @ 867:7f056c566569

Commands /alias & /bind list the key bindings and aliases
author Mikael Berthe <mikael@lilotux.net>
date Wed, 24 May 2006 23:30:31 +0200
parents fed6d1e4d7a9
children 303408ef5e5d
comparison
equal deleted inserted replaced
866:b30df2ab457f 867:7f056c566569
24 void settings_set(guint type, const gchar *key, const gchar *value); 24 void settings_set(guint type, const gchar *key, const gchar *value);
25 void settings_del(guint type, const gchar *key); 25 void settings_del(guint type, const gchar *key);
26 const gchar *settings_get(guint type, const gchar *key); 26 const gchar *settings_get(guint type, const gchar *key);
27 int settings_get_int(guint type, const gchar *key); 27 int settings_get_int(guint type, const gchar *key);
28 const gchar *settings_get_status_msg(enum imstatus status); 28 const gchar *settings_get_status_msg(enum imstatus status);
29 void settings_foreach(guint type,
30 void (*pfunc)(void *param, char *k, char *v),
31 void *param);
29 32
30 const gchar *isbound(int key); 33 const gchar *isbound(int key);
31 34
32 #endif /* __SETTINGS_H__ */ 35 #endif /* __SETTINGS_H__ */
33 36