summaryrefslogtreecommitdiffstats
path: root/parecord/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'parecord/device.h')
-rw-r--r--parecord/device.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/parecord/device.h b/parecord/device.h
new file mode 100644
index 0000000..3a520d6
--- /dev/null
+++ b/parecord/device.h
@@ -0,0 +1,12 @@
+#ifndef PAR_DEVICE_H
+#define PAR_DEVICE_H
+
+struct list_devices {
+ char *name;
+ char *description;
+};
+
+struct list_devices *getInputDeviceList(int *len);
+void freeDeviceList(struct list_devices *list, int len);
+
+#endif /* PAR_DEVICE_H */