home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d9xx / d945 / reminder.lha / Reminder / src / src.lha / Events.h < prev    next >
C/C++ Source or Header  |  1993-04-19  |  442b  |  23 lines

  1. /* Events.c prototypes for Reminder */
  2.  
  3. /* $Id: Events.h,v 1.3 1993/04/08 20:12:06 Matti_Rintala Exp $ */
  4.  
  5. #ifndef EVENTS_H
  6. #define EVENTS_H
  7.  
  8. #include <exec/types.h>
  9. #include <exec/lists.h>
  10.  
  11. struct List *InitEvents(void);
  12.  
  13. void NewEvent(void);
  14. struct List *AddEvent(void);
  15. int GetEvent(void);
  16. struct List *UpdateEvent(void);
  17. struct List *RemoveEvent(void);
  18.  
  19. int LoadEvents(const char *filename);
  20. int SaveEvents(const char *filename);
  21.  
  22. #endif
  23.