diff options
author | Frederic Culot <calcurse@culot.org> | 2007-03-24 23:19:15 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-03-24 23:19:15 +0000 |
commit | 9d87b1c6e406b62a3ad54cd7e9668d72075e7c72 (patch) | |
tree | 536329cbc6b862defffc83990b6e26879d118bea | |
parent | dc4b493a87100c85a11b3a34240dd11de027071a (diff) | |
download | calcurse-9d87b1c6e406b62a3ad54cd7e9668d72075e7c72.tar.gz calcurse-9d87b1c6e406b62a3ad54cd7e9668d72075e7c72.zip |
custom_load_conf() prototype added
-rwxr-xr-x | src/custom.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/custom.h b/src/custom.h index e9170fe..3f0af2d 100755 --- a/src/custom.h +++ b/src/custom.h @@ -1,4 +1,4 @@ -/* $calcurse: custom.h,v 1.3 2007/03/10 15:57:27 culot Exp $ */ +/* $calcurse: custom.h,v 1.4 2007/03/24 23:19:15 culot Exp $ */ /* * Calcurse - text-based organizer @@ -27,6 +27,8 @@ #ifndef CALCURSE_CUSTOM_H #define CALCURSE_CUSTOM_H +#include "vars.h" + #define NBUSERCOLORS 6 enum { /* Color pairs */ @@ -49,6 +51,8 @@ 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 custom_load_conf(conf_t *conf, int background, int layout, int nc_bar, + int nl_bar); void config_bar(void); int layout_config(int layout); void custom_color_config(int notify_bar); |