aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/alarm.h
blob: 81710bda5e4e49417e6fbbc19057717af700cb7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef ALARM_H
#define ALARM_H

#include <time.h>

typedef void (*AlarmFunction)(time_t time, CalendarAlarm *which, void *closuse);

void      alarm_init    (void);
gboolean  alarm_add     (CalendarAlarm *alarm, AlarmFunction fn, void *closure);
int       alarm_kill    (void *closure);

#endif