initial commit

This commit is contained in:
R-type
2015-12-14 14:00:35 +01:00
commit 5a96c0ca66
377 changed files with 149124 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef DOS_SB_H_
#define DOS_SB_H_
typedef void (*sbmix_t)(void *buffer, unsigned int size);
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
extern int sb_init(int *sample_rate, int *bps, int *buf_samples, int *stereo);
extern void sb_shutdown(void);
extern int sb_startoutput(sbmix_t fillbuf);
extern void sb_stopoutput(void);
extern void sb_setrate(int rate);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* DOS_SB_H_ */