diff options
author | nobody <nobody@localhost> | 1999-02-10 22:37:29 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-02-10 22:37:29 +0800 |
commit | 2a94e8c933d11e0f9c76e3a66129f304394ceb2d (patch) | |
tree | 08d16d9ea7f02dada397acf9dab7ea485cd364ea /calendar/cal_struct.h | |
parent | 27660c1d472b5a182170def1510ab70cde116fcd (diff) | |
download | gsoc2013-evolution-0_99_8.tar.gz gsoc2013-evolution-0_99_8.tar.zst gsoc2013-evolution-0_99_8.zip |
This commit was manufactured by cvs2svn to create tag 'V0_99_8'.V0_99_8
svn path=/tags/V0_99_8/; revision=661
Diffstat (limited to 'calendar/cal_struct.h')
-rw-r--r-- | calendar/cal_struct.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/calendar/cal_struct.h b/calendar/cal_struct.h deleted file mode 100644 index 411036c7aa..0000000000 --- a/calendar/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; -}; - |