File: sound.h

package info (click to toggle)
koules 1.4-15
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,264 kB
  • ctags: 2,542
  • sloc: ansic: 15,508; makefile: 837; asm: 379; tcl: 362; sh: 168
file content (17 lines) | stat: -rw-r--r-- 696 bytes parent folder | download | duplicates (13)
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 */