diff options
author | Frederic Culot <calcurse@culot.org> | 2007-08-15 15:35:25 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-08-15 15:35:25 +0000 |
commit | 9ee3eecfa684a7d881e5372305366f328f4cb040 (patch) | |
tree | 140e3662f04458ff6125570c927647ec51a2cb39 /src/todo.h | |
parent | 2beb88e4738ef116ee7f1380bbe78b8831b7d897 (diff) | |
download | calcurse-9ee3eecfa684a7d881e5372305366f328f4cb040.zip |
hilt_tod moved to static variable hilt
todo_hilt(), todo_hilt_set(), todo_hilt_decrease(), todo_hilt_increase(),
todo_saved_mesg(), todo_nb(), todo_set_nb(), todo_set_first(),
todo_first_increase(), todo_first_decrease(), todo_hilt_pos() added
Diffstat (limited to 'src/todo.h')
-rwxr-xr-x | src/todo.h | 23 |
1 files changed, 17 insertions, 6 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: todo.h,v 1.8 2007/07/28 13:11:43 culot Exp $ */ +/* $calcurse: todo.h,v 1.9 2007/08/15 15:35:25 culot Exp $ */ /* * Calcurse - text-based organizer @@ -37,11 +37,22 @@ struct todo_s { extern struct todo_s *todolist; -int todo_new_item(int); +void todo_hilt_set(int); +void todo_hilt_decrease(void); +void todo_hilt_increase(void); +int todo_hilt(void); +int todo_nb(void); +void todo_set_nb(int); +void todo_set_first(int); +void todo_first_increase(void); +void todo_first_decrease(void); +int todo_hilt_pos(void); +char *todo_saved_mesg(void); +void todo_new_item(void); struct todo_s *todo_add(char *, int); -void todo_delete(conf_t *, int *, int *); -int todo_chg_priority(int, int); -void todo_edit_item(int); -void todo_update_panel(window_t *, int, int, int, int, char **); +void todo_delete(conf_t *); +void todo_chg_priority(int); +void todo_edit_item(void); +void todo_update_panel(window_t *, int); #endif /* CALCURSE_TODO_H */ |