12345678910111213141516171819202122232425262728293031323334 |
- #ifndef VALARM_H
- #define VALARM_H
- #include "icalitem.h"
- #include <libical/ical.h>
- namespace KC {
- HRESULT HrParseReminder(LONG lRemindBefore, time_t ttReminderTime, bool bTask, icalcomponent **lppAlarm);
- HRESULT HrParseVAlarm(icalcomponent *lpComp, LONG *lpulRemindBefore, time_t *lpttReminderTime, bool *lpbReminderSet);
- }
- #endif
|