summaryrefslogtreecommitdiffstats
path: root/src/polypdef.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-06-23 23:17:30 +0000
committerLennart Poettering <lennart@poettering.net>2004-06-23 23:17:30 +0000
commitacb25b35102dfca08f66e155560f6c99cb8fa841 (patch)
tree2ae84c77727548a15eabbe5ad624dc1fd29af30b /src/polypdef.h
parenteecf602476ff5b51bdc08f8fd0e4aa70d2b0ef5a (diff)
main part of the native protocol
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@31 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/polypdef.h')
-rw-r--r--src/polypdef.h18
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