File: sound.h

package info (click to toggle)
koules 1.4-27
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,928 kB
  • sloc: ansic: 15,537; makefile: 779; asm: 379; tcl: 362; sh: 134
file content (17 lines) | stat: -rw-r--r-- 696 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * sound.h - Platform Independant Sound Support - Dec. 1994
 *
 * Copyright 1994 Sujal M. Patel (smpatel@wam.umd.edu)
 * Conditions in "copyright.h"          
 */

#if defined(SOUND) || defined(NAS_SOUND) || defined(RSOUND)

#ifdef __STDC__
void            init_sound ();	/* Init Sound System                          */
int             play_sound (int k);	/* Play a Sound                               */
void            maybe_play_sound (int k);	/* Play sound if the last 'k' sound_completed */
void            sound_completed (int k);	/* Complete a sound 'k'                       */
void            kill_sound ();	/* Terminate a sound unpredictably :)         */
#endif
#endif /* SOUND */