1
0

audio.h 214 B

1234567891011
  1. #ifndef NULLSOFT_AUDIOH
  2. #define NULLSOFT_AUDIOH
  3. int audioInit(int);
  4. int audioGetPos();
  5. void audioSetPos(int ms);
  6. void audioGetWaveform(unsigned short data[576*2]);
  7. void audioQuit();
  8. void audioPause(int s);
  9. #endif