Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 1st, 2012  |  syntax: None  |  size: 0.27 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #ifndef ALSA_H
  2. #define ALSA_H
  3.  
  4. #include "format.h"
  5. #include "wavereader.h"
  6.  
  7. struct snd_out;
  8. typedef struct snd_out snd_out_t;
  9.  
  10. snd_out_t *sndopen(format_info_t *info);
  11. void sndclose(snd_out_t *out);
  12.  
  13. void playwave(snd_out_t *out, wave_t *wave, format_info_t *info);
  14.  
  15. #endif