diff options
author | Frederic Culot <calcurse@culot.org> | 2007-03-10 15:57:27 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-03-10 15:57:27 +0000 |
commit | f29a854ddfb64b00e64fe6d4a3817c71b6a7c7b1 (patch) | |
tree | 38bf9da0997b81af7b05891fd7dfa6711a0b5ea6 | |
parent | 324d7e5cd00ea86ca9b2d241fefe4a36731fa124 (diff) | |
download | calcurse-f29a854ddfb64b00e64fe6d4a3817c71b6a7c7b1.tar.gz calcurse-f29a854ddfb64b00e64fe6d4a3817c71b6a7c7b1.zip |
custom_color_theme_name() prototype added
-rwxr-xr-x | src/custom.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/custom.h b/src/custom.h index b3cd448..e9170fe 100755 --- a/src/custom.h +++ b/src/custom.h @@ -1,4 +1,4 @@ -/* $calcurse: custom.h,v 1.2 2007/03/04 16:11:20 culot Exp $ */ +/* $calcurse: custom.h,v 1.3 2007/03/10 15:57:27 culot Exp $ */ /* * Calcurse - text-based organizer @@ -49,9 +49,10 @@ struct attribute_s { void custom_init_attr(void); void custom_apply_attr(WINDOW *win, int attr_num); void custom_remove_attr(WINDOW *win, int attr_num); -void config_bar(); -int layout_config(int layout, int colr); +void config_bar(void); +int layout_config(int layout); void custom_color_config(int notify_bar); void custom_load_color(char *color, int background); +void custom_color_theme_name(char *theme_name); #endif /* CALCURSE_CUSTOM_H */ |