Minor corrections to the .colours file editing; added .colours to the list of support...
[kugel-rb.git] / apps / plugins / rockboy / pcm.h
blobb90bba087fa460f056b0caab1b2c49d4a6b61cf2
2 #ifndef __PCM_H__
3 #define __PCM_H__
6 #include "defs.h"
8 struct pcm
10 int hz, len;
11 int stereo;
12 short *buf;
13 int pos;
16 extern struct pcm pcm;
18 void pcm_init(void);
19 int pcm_submit(void);
20 void pcm_close(void);
22 #endif