aboutsummaryrefslogtreecommitdiffstats
path: root/src/apoint.h
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2006-09-12 14:55:29 +0000
committerFrederic Culot <calcurse@culot.org>2006-09-12 14:55:29 +0000
commit40c9fa088233d0e7a3468477dd53176fe04835c3 (patch)
tree17ab00da97f2ad57f5d9ed65d7292625290f64c5 /src/apoint.h
parente56ea0ab6b21ee33eaca6a3ccd9b500eae3d67a4 (diff)
downloadcalcurse-40c9fa088233d0e7a3468477dd53176fe04835c3.tar.gz
calcurse-40c9fa088233d0e7a3468477dd53176fe04835c3.zip
prototypes updated to take new appointment linked lists structure into account
Diffstat (limited to 'src/apoint.h')
-rwxr-xr-xsrc/apoint.h29
1 files changed, 18 insertions, 11 deletions
diff --git a/src/apoint.h b/src/apoint.h
index 4acde99..638abdb 100755
--- a/src/apoint.h
+++ b/src/apoint.h
@@ -1,4 +1,4 @@
-/* $calcurse: apoint.h,v 1.2 2006/09/11 13:42:16 culot Exp $ */
+/* $calcurse: apoint.h,v 1.3 2006/09/12 14:55:29 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -33,22 +33,29 @@
#define HRMIN_SIZE 6
#define MESG_MAXSIZE 256
-struct apoint_s {
- struct apoint_s *next;
+typedef struct apoint_llist_node {
+ struct apoint_llist_node *next;
long start; /* seconds since 1 jan 1970 */
long dur; /* duration of the appointment in seconds */
char *mesg;
-};
+} apoint_llist_node_t;
-extern struct apoint_s *apointlist;
+typedef struct apoint_llist {
+ apoint_llist_node_t *root;
+ pthread_mutex_t mutex;
+} apoint_llist_t;
-struct apoint_s *apoint_new(char *, long, long);
-unsigned apoint_inday(struct apoint_s *o, long start);
-void apoint_sec2str(struct apoint_s *o, int type, long day, char *start, char *end);
-void apoint_write(struct apoint_s *o, FILE * f);
-struct apoint_s *apoint_scan(FILE * f, struct tm start, struct tm end);
+extern apoint_llist_t *alist_p;
+
+int apoint_llist_init(void);
+apoint_llist_node_t *apoint_new(char *, long, long);
+unsigned apoint_inday(apoint_llist_node_t *o, long start);
+void apoint_sec2str(apoint_llist_node_t *o,
+ int type, long day, char *start, char *end);
+void apoint_write(apoint_llist_node_t *o, FILE * f);
+apoint_llist_node_t *apoint_scan(FILE * f, struct tm start, struct tm end);
void apoint_delete_bynum(long start, unsigned num);
-void display_item_date(WINDOW *win, int color, struct apoint_s *i,
+void display_item_date(WINDOW *win, int color, apoint_llist_node_t *i,
int type, long date, int y, int x);
int get_item_line(int item_nb, int nb_events_inday);
void scroll_pad_down(int item_nb, int nb_events_inday, int win_length);