home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource1 / program6 / run_me.bat < prev    next >
DOS Batch File  |  1993-11-14  |  1KB  |  51 lines

  1. @echo off
  2. if "%1"=="?" goto :question
  3. if "%1"=="0" goto :spkr
  4. if "%1"=="1" goto :lpt1
  5. if "%1"=="2" goto :lpt2
  6. if "%1"=="3" goto :lpt3
  7. if "%1"=="" goto :autolocate
  8. :question
  9. echo To play through the internal speaker, type "RUN_ME 0".
  10. echo To play through an EAR-WIZARD on LPT1, type "RUN_ME 1".
  11. echo To play through an EAR-WIZARD on LPT2, type "RUN_ME 2".
  12. echo To play through an EAR-WIZARD on LPT3, type "RUN_ME 3".
  13. goto :exit
  14. :spkr
  15. fsspeak /S00 16572 cal00.165
  16. if ERRORLEVEL 15 goto :notrap
  17. if ERRORLEVEL 14 goto :tooslow
  18. fsspeak /P cal00.165 demo.voi
  19. goto :exit
  20. :lpt1
  21. fsspeak /S10 16572 cal10.165
  22. if ERRORLEVEL 15 goto :notrap
  23. if ERRORLEVEL 14 goto :tooslow
  24. fsspeak /P cal10.165 demo.voi
  25. goto :exit
  26. :lpt2
  27. fsspeak /S20 16572 cal20.165
  28. if ERRORLEVEL 15 goto :notrap
  29. if ERRORLEVEL 14 goto :tooslow
  30. fsspeak /P cal20.165 demo.voi
  31. goto :exit
  32. :lpt3
  33. fsspeak /S30 16572 cal30.165
  34. if ERRORLEVEL 15 goto :notrap
  35. if ERRORLEVEL 14 goto :tooslow
  36. fsspeak /P cal30.165 demo.voi
  37. goto :exit
  38. :autolocate
  39. fsspeak /SA0 16572 cala0.165
  40. if ERRORLEVEL 15 goto :notrap
  41. if ERRORLEVEL 14 goto :tooslow
  42. fsspeak /P cala0.165 demo.voi
  43. goto :exit
  44. :notrap
  45. echo To run under Windows you must place "TrapTimerPorts=False" in the
  46. echo  [386enh] section of SYSTEM.INI.
  47. goto :exit
  48. :tooslow
  49. echo This computer is too slow to run this program correctly.
  50. :exit
  51.