home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / MM1 / SOUNDUTILS / mm1_tracker.lzh / TRACKER4.6 / prefs.h < prev    next >
Text File  |  1994-11-24  |  1KB  |  37 lines

  1. /* prefs.h 
  2.     vi:ts=3 sw=3:
  3.  */
  4.  
  5. /* $Id: prefs.h,v 4.3 1994/11/15 16:11:01 espie Exp espie $
  6.  * $Log: prefs.h,v $
  7.  * Revision 4.3  1994/11/15  16:11:01  espie
  8.  * *** empty log message ***
  9.  *
  10.  * Revision 4.2  1994/08/23  18:19:46  espie
  11.  * Added speedmode option.
  12.  */
  13.  
  14. #define BASE_PREFS      50
  15. #define PREF_TYPE       BASE_PREFS
  16. #define PREF_SPEED      (BASE_PREFS+1)
  17. #define PREF_TOLERATE   (BASE_PREFS+2)
  18. #define PREF_REPEATS    (BASE_PREFS+3)
  19. #define PREF_IMASK      (BASE_PREFS+4)
  20. #define PREF_BCDVOL     (BASE_PREFS+5)
  21. #define PREF_DUMP       (BASE_PREFS+6)
  22. #define PREF_SYNC       (BASE_PREFS+7)
  23. #define PREF_SHOW       (BASE_PREFS+8)
  24. #define PREF_SPEEDMODE     (BASE_PREFS+9)
  25. #define NORMAL_SPEEDMODE 0
  26. #define FINESPEED_ONLY    1
  27. #define SPEED_ONLY 2
  28. #define OLD_SPEEDMODE 3
  29.  
  30. #define NUMBER_PREFS    (PREF_SPEEDMODE - BASE_PREFS + 1)
  31.  
  32. XT VALUE get_pref P((int index));
  33. XT void set_pref P((int index, VALUE value));
  34. XT int get_pref_scalar P((int index));
  35. XT void set_pref_scalar P((int index, int value));
  36. XT struct tag *get_prefs P((void));
  37.