diff options
author | nobody <nobody@localhost> | 1998-09-26 06:27:31 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1998-09-26 06:27:31 +0800 |
commit | 6803836c1ce1d036ca400e698a153ce43343f8e1 (patch) | |
tree | 101a3a296a26c908c562ced306343bed17feeb86 /calendar/gui/cal_struct.h | |
parent | 8b71e81b3f7dcd3dbd0c79bf23204b1ba4520c00 (diff) | |
download | gsoc2013-evolution-6803836c1ce1d036ca400e698a153ce43343f8e1.tar.gz gsoc2013-evolution-6803836c1ce1d036ca400e698a153ce43343f8e1.tar.zst gsoc2013-evolution-6803836c1ce1d036ca400e698a153ce43343f8e1.zip |
This commit was manufactured by cvs2svn to create tag 'GDM_0_4'.GDM_0_4
svn path=/tags/GDM_0_4/; revision=401
Diffstat (limited to 'calendar/gui/cal_struct.h')
-rw-r--r-- | calendar/gui/cal_struct.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/calendar/gui/cal_struct.h b/calendar/gui/cal_struct.h deleted file mode 100644 index 411036c7aa..0000000000 --- a/calendar/gui/cal_struct.h +++ /dev/null @@ -1,27 +0,0 @@ -#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; -}; - |