comparison mcabber/src/settings.h @ 288:1eea0fa0955e

Add /bind command * Split process_line() to process_line() + process_command() * Do not expand aliases in multi-line mode * Add /bind command The binding system is ugly (not UTF-8 compatible, I think, and certainly system dependant because it is using ncurses wgetch() values).
author Mikael Berthe <mikael@lilotux.net>
date Fri, 08 Jul 2005 21:47:17 +0100
parents f562b9af2de7
children 96917f04c841
comparison
equal deleted inserted replaced
287:c2a7e78d9ff5 288:1eea0fa0955e
15 void settings_set(guint type, const gchar *key, const gchar *value); 15 void settings_set(guint type, const gchar *key, const gchar *value);
16 void settings_del(guint type, const gchar *key); 16 void settings_del(guint type, const gchar *key);
17 const gchar *settings_get(guint type, const gchar *key); 17 const gchar *settings_get(guint type, const gchar *key);
18 int settings_get_int(guint type, const gchar *key); 18 int settings_get_int(guint type, const gchar *key);
19 19
20 const gchar *isbound(int key);
21
20 #endif /* __SETTINGS_H__ */ 22 #endif /* __SETTINGS_H__ */
21 23