diff options
Diffstat (limited to 'src/polyplib-def.h')
-rw-r--r-- | src/polyplib-def.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/polyplib-def.h b/src/polyplib-def.h new file mode 100644 index 00000000..6cfafc97 --- /dev/null +++ b/src/polyplib-def.h @@ -0,0 +1,20 @@ +#ifndef foopolypdefhfoo +#define foopolypdefhfoo + +#include <inttypes.h> + +enum pa_stream_direction { + PA_STREAM_PLAYBACK, + PA_STREAM_RECORD +}; + +struct pa_buffer_attr { + uint32_t maxlength; + uint32_t tlength; + uint32_t prebuf; + uint32_t minreq; + uint32_t fragsize; +}; + + +#endif |