Files
evolution/calendar/cal_struct.h
Craig Small e97cbbe9d7 added repeat values
svn path=/trunk/; revision=9
1998-02-10 02:07:15 +00:00

28 lines
357 B
C

#define MAX_SZ 30
enum RepeatType {
Single,
Days,
Months,
WeekDays,
MonthDays
};
struct actionitem {
char date[MAX_SZ];
int time; /* Minutes past midnight */
};
struct event {
struct actionitem start;
struct actionitem end;
enum RepeatType repeat;
int repeatcount;
char description[MAX_SZ];
char subtype[MAX_SZ];
GList *properties;
};