home *** CD-ROM | disk | FTP | other *** search
-
- ////////////////////////////////////////////////////////
- // PROGRAM: SOUNDON.SLT //
- // AUTHOR: Christopher Saunders //
- // DATE: April 25th 1992 //
- // //
- // INFORMATION //
- // ~~~~~~~~~~~ //
- // This is a companion program for SOUNDOFF.SLT. It //
- // will turn your speaker on. See SOUNDOFF.SLT for //
- // more information. //
- ////////////////////////////////////////////////////////
-
- int old_sound;
-
- main()
- {
- old_sound = _sound_on;
- _sound_on = 1;
- status_wind("Sound is on!",30);
- }