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

#include <time.h>
#include "cal-util/calobj.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