home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 348.lha / chatterbox_v1.0 / sources / chatter.h < prev    next >
C/C++ Source or Header  |  1990-02-14  |  511b  |  32 lines

  1.  
  2.  
  3. /* define things I chatter about */
  4. #define GAB_DISKOUT 0
  5. #define GAB_DISKIN 1
  6. #define GAB_WINDOWACTIVE 2
  7. #define GAB_WINDOWINACTIVE 3
  8. #define GAB_EVERY_SO_OFTEN 4
  9. #define GAB_NEW_PREFERENCES 5
  10. #define GAB_BEEP 6
  11.  
  12. #define N_GAB_TYPES 7
  13.  
  14. #define MAX_GAB_ITEMS 32
  15.  
  16. struct gab_info
  17. {
  18.     int n_gab_items;
  19.     int next_new_gab_item;
  20.     int next_play_gab_item;
  21.     Sample *Samples[MAX_GAB_ITEMS];
  22. };
  23.  
  24.  
  25. #define MAX_DEFERRED_FILES 256
  26.  
  27. struct deferred_load_info
  28. {
  29.     char *filename[MAX_DEFERRED_FILES];
  30.     int n_deferred_items;
  31. };
  32.