home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Fax / AVMA&GPFax-V1,33Sources.LHA / ui_support.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-25  |  909 b   |  39 lines

  1. /* $Header: pd:zvmRCS/ui_support.h,v 1.2 1993/04/19 18:40:06 rvillari Exp rvillari $ */
  2. #ifndef _UI_SUPPORT_H
  3. #define _UI_SUPPORT_H
  4.  
  5. /* how to add to the setup window */
  6. /* 0.  Add stuff to the gadtoolsbox ui3.g
  7.    1.  Add the fields in SetupWindowState
  8.    2.  Change the readConfig and the writeConfig
  9.    3.  Add stuff to InitSetupWindow
  10.    4.  Add the appropriate Setup??Clicked() stuff
  11.    5.  Update the SetupVanillaKey() if needed
  12.    6.  Add appropriate access functions
  13. */
  14.  
  15. /* here's where we put the states of the different windows */
  16.  
  17. #include "sizes.h"
  18.  
  19. struct SetupWindowState {
  20.   char password[TSTRING];
  21.   int rings;
  22.   int compression;
  23.   int playTo;
  24.   int recordFrom;
  25.   int recordingTime;
  26.   int silenceThreshold;
  27.   int silenceTime;
  28.   int amigaVolume;
  29.   int zipWindow;
  30.   int hasFax;
  31.   int saRings;
  32.   char path[MSTRING];
  33.   char message[MSTRING];
  34.   char modemInit[LSTRING];
  35.   int scheduler;
  36. };
  37.  
  38. #endif
  39.