diff options
author | Frederic Culot <calcurse@culot.org> | 2008-01-20 10:45:38 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-01-20 10:45:38 +0000 |
commit | 407a262938a3aafb3be7d3077b4bf3c0656f4abe (patch) | |
tree | 9ee22bc3c73ad1070bb270b41e9bce0ae04eadbe /src/apoint.h | |
parent | 54c2b6004102de55c8ebed7d9ce5f1ece7eeb449 (diff) | |
download | calcurse-407a262938a3aafb3be7d3077b4bf3c0656f4abe.zip |
Code parts related to item update rewritten
Diffstat (limited to 'src/apoint.h')
-rwxr-xr-x | src/apoint.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/apoint.h b/src/apoint.h index 3f5d704..9c1e7ef 100755 --- a/src/apoint.h +++ b/src/apoint.h @@ -1,4 +1,4 @@ -/* $calcurse: apoint.h,v 1.11 2008/01/13 12:40:45 culot Exp $ */ +/* $calcurse: apoint.h,v 1.12 2008/01/20 10:45:38 culot Exp $ */ /* * Calcurse - text-based organizer @@ -27,6 +27,7 @@ #ifndef CALCURSE_APOINT_H #define CALCURSE_APOINT_H +#include "utils.h" #include "notify.h" #include "recur.h" #include "vars.h" @@ -67,7 +68,8 @@ void apoint_sec2str(apoint_llist_node_t *, int, long, char *, char *); void apoint_write(apoint_llist_node_t *, FILE *); apoint_llist_node_t *apoint_scan(FILE *, struct tm, struct tm, char, char *); -void apoint_delete_bynum(long, unsigned, int); +apoint_llist_node_t *apoint_get(long, int); +void apoint_delete_bynum(long, unsigned, erase_flag_e); void apoint_scroll_pad_down(int, int); void apoint_scroll_pad_up(int); struct notify_app_s *apoint_check_next(struct notify_app_s *, long); |