summaryrefslogtreecommitdiffstats
path: root/src/dtmffifo.h
diff options
context:
space:
mode:
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