- #ifndef ALSA_H
- #define ALSA_H
- #include "format.h"
- #include "wavereader.h"
- struct snd_out;
- typedef struct snd_out snd_out_t;
- snd_out_t *sndopen(format_info_t *info);
- void sndclose(snd_out_t *out);
- void playwave(snd_out_t *out, wave_t *wave, format_info_t *info);
- #endif