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

  1. /* Gadutil.c prototypes for Reminder */
  2.  
  3. /* $Id: Gadutil.h,v 1.5 1993/04/18 21:53:47 Matti_Rintala Exp $ */
  4.  
  5. #ifndef GADUTIL_H
  6. #define GADUTIL_H
  7.  
  8. #include <exec/types.h>
  9. #include <exec/lists.h>
  10.  
  11. int CheckInt(struct Gadget *gad, int minval, int maxval, short *var);
  12. int CheckMonth(void);
  13. int CheckText(void);
  14. int CheckPort(void);
  15. int CheckCom(void);
  16.  
  17. void SetInt(struct Gadget *gad, short newval);
  18.  
  19. void SetYear(short newval);
  20. void SetDay(short newval);
  21. void SetBefore(short newval);
  22. void SetAfter(short newval);
  23. void SetWDay(short newval);
  24. void SetMonth(short newval);
  25. void SetAutodelete(BOOL newval);
  26. void SetGrouped(BOOL newval);
  27. void SetText(const char *newtext);
  28. void SetPort(const char *newtext);
  29. void SetCom(const char *newtext);
  30. void SetAMode(char mode);
  31. void SetEvent(void);
  32. void ShowWDay(void);
  33.  
  34. void PressButton(struct Gadget *gad);
  35.  
  36. void ResetEvent(void);
  37. void SetEventlist(int newval);
  38. void DetachEventlist(void);
  39. void AttachEventlist(struct List *list);
  40.  
  41. #endif
  42.