1 /*
2  * sound.h - Platform Independant Sound Support - Dec. 1994
3  *
4  * Copyright 1994 Sujal M. Patel (smpatel@wam.umd.edu)
5  * Conditions in "copyright.h"
6  */
7 
8 #if defined(SOUND) || defined(NAS_SOUND) || defined(RSOUND)
9 
10 #ifdef __STDC__
11 void            init_sound ();	/* Init Sound System                          */
12 int             play_sound (int k);	/* Play a Sound                               */
13 void            maybe_play_sound (int k);	/* Play sound if the last 'k' sound_completed */
14 void            sound_completed (int k);	/* Complete a sound 'k'                       */
15 void            kill_sound ();	/* Terminate a sound unpredictably :)         */
16 #endif
17 #endif /* SOUND */
18