home *** CD-ROM | disk | FTP | other *** search
/ M.u.C.S. Disc 2000 / MUCS2000.iso / sound / mp2 / src / gem / mp2conf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-08  |  673 b   |  30 lines

  1. #define CF_BLOCK_SIZE   1
  2. #define CF_COUNT_DIR    2
  3. #define CF_TIME_SLICE   3
  4. #define CF_DEFAULT_PATH 4
  5. #define CF_FORCE_CLOCK  5
  6. #define CF_FIND_FIRST   6
  7. #define CF_PLAY_FIRST   7
  8.  
  9. #define DEFAULT_BLOCK_SIZE 200 /* kb */
  10. #define DEFAULT_TIME_SLICE 500 /* ms */
  11. #define DEFAULT_COUNT_DIR 1    /* =down */
  12.  
  13. struct config
  14. {
  15.     char *arg;
  16.     int define;
  17. };
  18.  
  19. struct config config_args[] =
  20. {
  21.     { "BLOCK_SIZE", CF_BLOCK_SIZE },
  22.     { "COUNT_DIRECTION", CF_COUNT_DIR },
  23.     { "TIME_SLICE", CF_TIME_SLICE },
  24.     { "DEFAULT_PATH", CF_DEFAULT_PATH },
  25.     { "FORCE_CLOCK", CF_FORCE_CLOCK },
  26.     { "FIND_FIRST", CF_FIND_FIRST },
  27.     { "PLAY_FIRST", CF_PLAY_FIRST },
  28.     { 0,0 }
  29. };
  30.