diff options
author | Frederic Culot <calcurse@culot.org> | 2008-01-13 12:40:45 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-01-13 12:40:45 +0000 |
commit | 738a3a417071bfaed53297cbefad39b996e55dfb (patch) | |
tree | 006b954aa80383c18ed030d1be3f08855d54a2f8 /src/event.h | |
parent | b7115fbcf2a3a53d52f73ce0693075ab50de96f5 (diff) | |
download | calcurse-738a3a417071bfaed53297cbefad39b996e55dfb.zip |
Ability to attach notes to appointments and events added
Diffstat (limited to 'src/event.h')
-rwxr-xr-x | src/event.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/event.h b/src/event.h index 48e2ac5..2fa8908 100755 --- a/src/event.h +++ b/src/event.h @@ -1,8 +1,8 @@ -/* $calcurse: event.h,v 1.3 2007/12/30 16:27:59 culot Exp $ */ +/* $calcurse: event.h,v 1.4 2008/01/13 12:40:45 culot Exp $ */ /* * Calcurse - text-based organizer - * Copyright (c) 2004-2006 Frederic Culot + * Copyright (c) 2004-2008 Frederic Culot * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -40,10 +40,10 @@ struct event_s { extern struct event_s *eventlist; -struct event_s *event_new(char *, long, int); +struct event_s *event_new(char *, char *, long, int); unsigned event_inday(struct event_s *, long); void event_write(struct event_s *, FILE *); -struct event_s *event_scan(FILE *, struct tm, int); -void event_delete_bynum(long, unsigned); +struct event_s *event_scan(FILE *, struct tm, int, char *); +void event_delete_bynum(long, unsigned, int); #endif /* CALCURSE_EVENT_H */ |