aboutsummaryrefslogtreecommitdiffstats
path: root/src/trsync.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/trsync.h')
-rw-r--r--src/trsync.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/trsync.h b/src/trsync.h
new file mode 100644
index 00000000..c7cc9b54
--- /dev/null
+++ b/src/trsync.h
@@ -0,0 +1,19 @@
+#ifndef __TRSYNC_H
+#define __TRSYNC_H
+
+#include <stdint.h> // uint16_t
+
+struct trsync_signal;
+typedef void (*trsync_callback_t)(struct trsync_signal *tss, uint8_t reason);
+
+struct trsync_signal {
+ struct trsync_signal *next;
+ trsync_callback_t func;
+};
+
+struct trsync *trsync_oid_lookup(uint8_t oid);
+void trsync_do_trigger(struct trsync *ts, uint8_t reason);
+void trsync_add_signal(struct trsync *ts, struct trsync_signal *tss
+ , trsync_callback_t func);
+
+#endif // trsync.h