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