#ifndef CALENDAR_H #define CALENDAR_H #include "calobj.h" BEGIN_GNOME_DECLS typedef struct { /* This calendar's title */ char *title; /* backing store for this calendar object */ char *filename; /* The list of events; todo's and journal entries */ GList *events; GList *todo; GList *journal; /* Time at which the calendar was created */ time_t created; /* If the calendar was last modified */ int modified; void *temp; } Calendar; /* This is only used by the calendar_get_events_in_range routine to get * a list of objects that recur on a specific date */ typedef struct { time_t ev_start; time_t ev_end; iCalObject *ico; } CalendarObject; Calendar *calendar_new (char *title); char *calendar_load (Calendar *cal, char *fname); void calendar_save (Calendar *cal, char *fname); void calendar_add_object (Calendar *cal, iCalObject *obj); void calendar_remove_object (Calendar *cal, iCalObject *obj); void calendar_destroy (Calendar *cal); GList *calendar_get_objects_in_range (GList *objects, time_t start, time_t end, GCompareFunc sort_func); GList *calendar_get_todo_in_range (Calendar *cal, time_t start, time_t end, GCompareFunc sort_func); GList *calendar_get_journal_in_range (Calendar *cal, time_t start, time_t end, GCompareFunc sort_func); gint calendar_compare_by_dtstart (gpointer a, gpointer b); void calendar_iterate_on_objects (GList *objects, time_t start, time_t end, calendarfn cb, void *closure); void calendar_iterate (Calendar *cal, time_t start, time_t end, calendarfn cb, void *closure); /* Returns a list of CalendarObject structures. These represent the events in the calendar that are * in the specified range. */ GList *calendar_get_events_in_range (Calendar *cal, time_t start, time_t end); /* Destroy list returned by calendar_get_events_in_range() with this function */ void calendar_destroy_event_list (GList *l); /* Informs the calendar that obj information has changed */ void calendar_object_changed (Calendar *cal, iCalObject *obj, int flags); void calendar_notify (time_t, void *data); END_GNOME_DECLS #endif lodash.merge-4.6.2'>dependabot/npm_and_yarn/devel/electron4/files/lodash.merge-4.6.2 FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/jailctl/distinfo
Commit message (Expand)AuthorAgeFilesLines
* - Update to 0.80miwi2006-11-161-3/+3
* - Update to 0.71sem2006-03-201-3/+3
* - update to 0.70leeym2006-02-081-3/+3
* SHA256ifyedwin2006-01-24