/* Events.c prototypes for Reminder */

/* $Id: Events.h,v 1.1 93/02/28 23:33:08 Matti_Rintala Exp $ */

#ifndef EVENTS_H
#define EVENTS_H

#include <exec/types.h>
#include <exec/lists.h>

struct List *InitEvents(void);

struct List *AddEvent(void);
void GetEvent(void);
struct List *UpdateEvent(void);
struct List *RemoveEvent(void);

int LoadEvents(const char *filename);
int SaveEvents(const char *filename);

#endif
