diff options
author | Frederic Culot <calcurse@culot.org> | 2007-10-21 13:41:29 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-10-21 13:41:29 +0000 |
commit | 5ef198a82a6300a7f210e1c2afe1a94295c0f2d7 (patch) | |
tree | dd4dc2a96411b7de84190a4690e33da877e1e361 | |
parent | b15bd9417810ce833dfb49e60d3b6dab6e016c5a (diff) | |
download | calcurse-5ef198a82a6300a7f210e1c2afe1a94295c0f2d7.tar.gz calcurse-5ef198a82a6300a7f210e1c2afe1a94295c0f2d7.zip |
custom_confwin_init() added
custom_color_config() prototype updated
-rwxr-xr-x | src/custom.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/custom.h b/src/custom.h index 9d98bc1..71909c2 100755 --- a/src/custom.h +++ b/src/custom.h @@ -1,4 +1,4 @@ -/* $calcurse: custom.h,v 1.9 2007/08/15 15:37:53 culot Exp $ */ +/* $calcurse: custom.h,v 1.10 2007/10/21 13:41:29 culot Exp $ */ /* * Calcurse - text-based organizer @@ -28,6 +28,7 @@ #define CALCURSE_CUSTOM_H #include "vars.h" +#include "wins.h" #define NBUSERCOLORS 6 @@ -72,8 +73,9 @@ void custom_remove_attr(WINDOW *, int); void custom_load_conf(conf_t *, int); void config_bar(void); void layout_config(void); -void custom_color_config(int); +void custom_color_config(void); void custom_color_theme_name(char *); +void custom_confwin_init(window_t *, char *); void custom_general_config(conf_t *); #endif /* CALCURSE_CUSTOM_H */ |