summaryrefslogtreecommitdiffstats
path: root/src/dtmffifo.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-01-05 22:26:34 +0000
committerLennart Poettering <lennart@poettering.net>2004-01-05 22:26:34 +0000
commit444b524c3a26d8dd83fae2a074d3d13b10ba17f7 (patch)
treee2f5d69324b7383f735fc3f350fa5a10ccaba6bc /src/dtmffifo.h
parentd24a3f265ec4344b5502ec57df3cf8358f6f1499 (diff)
forgot some files
preliminary client implementation git-svn-id: file:///home/lennart/svn/public/ivam2/trunk@15 dbf6933d-3bce-0310-9bcc-ed052ba35b35
Diffstat (limited to 'src/dtmffifo.h')
-rw-r--r--src/dtmffifo.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/dtmffifo.h b/src/dtmffifo.h
new file mode 100644
index 0000000..39e39c9
--- /dev/null
+++ b/src/dtmffifo.h
@@ -0,0 +1,13 @@
+#ifndef foodtmffifohfoo
+#define foodtmffifohfoo
+
+struct dtmf_fifo {
+ int fd;
+ char *dir, *fname;
+};
+
+struct dtmf_fifo* dtmf_fifo_new(void);
+void dtmf_fifo_free(struct dtmf_fifo *d);
+void dtmf_fifo_pass(struct dtmf_fifo *d, char c);
+
+#endif