aboutsummaryrefslogtreecommitdiff
path: root/src/recording.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/recording.h')
-rw-r--r--src/recording.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/recording.h b/src/recording.h
new file mode 100644
index 0000000..fec76af
--- /dev/null
+++ b/src/recording.h
@@ -0,0 +1,12 @@
+#include "../config.h"
+
+#ifdef SESSION_RECORDING
+#ifndef RECORDING_H_
+#define RECORDING_H_
+
+void clean_recorder(void);
+char init_recorder(void);
+char record(void* data, size_t len);
+
+#endif
+#endif