aboutsummaryrefslogtreecommitdiffstats
path: root/src/todo.h
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2007-08-15 15:35:25 +0000
committerFrederic Culot <calcurse@culot.org>2007-08-15 15:35:25 +0000
commit9ee3eecfa684a7d881e5372305366f328f4cb040 (patch)
tree140e3662f04458ff6125570c927647ec51a2cb39 /src/todo.h
parent2beb88e4738ef116ee7f1380bbe78b8831b7d897 (diff)
downloadcalcurse-9ee3eecfa684a7d881e5372305366f328f4cb040.tar.gz
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-xsrc/todo.h23
1 files changed, 17 insertions, 6 deletions
diff --git a/src/todo.h b/src/todo.h
index 30b8056..e8d128b 100755
--- a/src/todo.h
+++ b/src/todo.h
@@ -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 */