Name
Miscellaneous utilities --
Details
CalObjInstance
typedef struct {
char *uid; /* UID of the object */
time_t start; /* Start time of instance */
time_t end; /* End time of instance */
} CalObjInstance; |
cal_obj_instance_list_free ()
void cal_obj_instance_list_free (GList *list); |
Frees a list of CalObjInstance structures.
CalAlarmInstance
typedef struct {
char *uid; /* UID of object */
#if 0
enum AlarmType type; /* Type of alarm */
#endif
time_t trigger; /* Alarm trigger time */
time_t occur; /* Occurrence time */
} CalAlarmInstance; |
cal_alarm_instance_list_free ()
void cal_alarm_instance_list_free (GList *list); |
Frees a list of CalAlarmInstance structures.
enum CalObjType
typedef enum {
CALOBJ_TYPE_EVENT = 1 << 0,
CALOBJ_TYPE_TODO = 1 << 1,
CALOBJ_TYPE_JOURNAL = 1 << 2,
CALOBJ_TYPE_ANY = 0x07
} CalObjType; |
cal_obj_uid_list_free ()
void cal_obj_uid_list_free (GList *list); |
Frees a list of unique identifiers for calendar objects.