From f1b08663ddff6432289ca4780bc823c96d471657 Mon Sep 17 00:00:00 2001 From: Arturo Espinosa Date: Sat, 18 Apr 1998 04:02:46 +0000 Subject: Yes. Yes. It works. It loads, it saves, it does all that stuff. It works, even if federico complains that we did not test close. Repetition, alarms, all that stuff you all guys love. It it is there. We did minimal testing, but we know you will happilly commit a fix if you find a problem, right? Ok, we are off to a party now. Miguel svn path=/trunk/; revision=155 --- calendar/alarm.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 calendar/alarm.h (limited to 'calendar/alarm.h') diff --git a/calendar/alarm.h b/calendar/alarm.h new file mode 100644 index 0000000000..39f7281ce7 --- /dev/null +++ b/calendar/alarm.h @@ -0,0 +1,10 @@ +#ifndef ALARM_H +#define ALARM_H + +typedef void (*AlarmFunction)(time_t time, void *closuse); + +void alarm_init (void); +void alarm_add (time_t alarm_time, AlarmFunction fn, void *closure); +void alarm_kill (void *closure); + +#endif -- cgit v1.2.3