comparison src/audio/mint/SDL_mintaudiointerrupt_s.h @ 398:d219b0e02f5f

Added Atari audio support (thanks Patrice!)
author Sam Lantinga <slouken@libsdl.org>
date Mon, 10 Jun 2002 20:42:53 +0000
parents
children
comparison
equal deleted inserted replaced
397:283d348cb624 398:d219b0e02f5f
1 /*
2 * Audio interrupt
3 *
4 * Patrice Mandin
5 */
6
7 #ifndef _SDL_MINTAUDIOINTERRUPT_S_H_
8 #define _SDL_MINTAUDIOINTERRUPT_S_H_
9
10 #include "SDL_types.h"
11
12 /* Variables */
13
14 extern void *SDL_MintAudio_audiobuf[2]; /* Pointers to buffers */
15 extern long SDL_MintAudio_audiosize; /* Length of audio buffer */
16 extern long SDL_MintAudio_numbuf; /* Buffer to play */
17 extern long SDL_MintAudio_mutex;
18
19 /* Functions */
20 void SDL_MintAudio_IntDma(void);
21 void SDL_MintAudio_IntXbios(void);
22 void SDL_MintAudio_IntGsxb(void);
23
24 #endif /* _SDL_MINTAUDIOINTERRUPT_S_H_ */