home *** CD-ROM | disk | FTP | other *** search
/ Sound Sensations! / sound_sensations.iso / soundb / sndhack / examp001.wsn < prev    next >
Text File  |  1991-07-28  |  417b  |  15 lines

  1. ; SndHack processes a text file 1 line at a time.
  2. ; Empty lines are ignored, and all characters following
  3. ; a semicolon are ignored.
  4. ; Many examples start with a CloseSound().  This
  5. ; will just make sure that we have closed the
  6. ; sound device from any previous OpenSound()s.
  7. ;we have done.
  8. CloseSound();
  9. OpenSound();
  10. SetVoiceNote(1, C4, 4, 0);
  11. StartSound();
  12. WaitSoundState(S_QUEUEEMPTY);
  13. CloseSound();
  14.  
  15.