1 /***************************************************************************
2  *   S3m/Mod player by Daniel Marks (dmarks@ais.net)
3  *   GUS support by David Jeske (jeske@uiuc.edu)
4  *
5  * (C) 1994,1995 By Daniel Marks and David Jeske
6  *
7  * While we retain the copyright to this code, this source code is FREE.
8  * You may use it in any way you wish, in any product you wish. You may
9  * NOT steal the copyright for this code from us.
10  *
11  * We respectfully ask that you email one of us, if possible, if you
12  * produce something significant with this code, or if you have any bug
13  * fixes to contribute.  We also request that you give credit where
14  * credit is due if you include part of this code in a program of your own.
15  *
16  * Email: s3mod@uiuc.edu
17  *        jeske@uiuc.edu
get_dsp_device(void)18  *
19  * See the associated README file for Thanks
20  ***************************************************************************
21  *
22  * dsp.h - defines for the DSP support
23  *
24  */
25 
26 #ifndef _DSP_H
27 #define _DSP_H 1
28 
29 #include "config.h"
30 
31 #ifdef DSP
32 extern int                     audio_buffer_size;
33 extern uint8                  *audio_start_buffer;
34 extern uint8                  *audio_end_buffer;
35 extern uint8                  *audio_curptr;
36 
37 void get_dsp_device(void);
38 void write_dsp_device(void *buf, int size);
39 void close_dsp_device(void);
40 #endif /* DSP */
41 
write_dsp_device(void * buf,int size)42 #endif /* _DSP_H */
43