home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / dfÜ / fax / source / faxgui.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-27  |  590 b   |  39 lines

  1. #ifndef GUI_FILE_H
  2. #define GUI_FILE_H
  3.  
  4. /* Types */
  5. #include <exec/types.h>
  6. #include "fax_cat.h"
  7.  
  8. struct ObjApp
  9. {
  10.     APTR    App;
  11.     APTR    Fax_Win;
  12.     APTR    MN_label_1;
  13.     APTR    BT_Printer;
  14.     APTR    BT_Spooler;
  15.     APTR    BT_Logbook;
  16.     APTR    BT_Config;
  17.     APTR    BT_Desktop;
  18.     APTR    BT_Phone;
  19.     APTR    BT_View;
  20.     APTR    BT_End;
  21.     APTR    Info_Win;
  22.     APTR    TX_ueber;
  23.     APTR    BT_OK;
  24.     char *    STR_TX_ueber;
  25. };
  26.  
  27. #define BT_PRINTER 1
  28. #define BT_SPOOLER 2
  29. #define BT_LOGBOOK 3
  30. #define BT_CONFIG 4
  31. #define BT_DESK 5
  32. #define BT_PHONE 6
  33. #define BT_VIEW 7
  34.  
  35. extern struct ObjApp * CreateApp(void);
  36. extern void DisposeApp(struct ObjApp *);
  37.  
  38. #endif
  39.