aboutsummaryrefslogtreecommitdiffhomepage
path: root/midimonster.h
diff options
context:
space:
mode:
Diffstat (limited to 'midimonster.h')
-rw-r--r--midimonster.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/midimonster.h b/midimonster.h
index 630399a..9f1a33e 100644
--- a/midimonster.h
+++ b/midimonster.h
@@ -187,5 +187,15 @@ int mm_channel_event(channel* c, channel_value v);
* *i will need to be freed by the caller.
*/
int mm_backend_instances(char* backend, size_t* n, instance*** i);
+/*
+ * Query an internal timestamp, which is updated every core iteration.
+ * This timestamp should not be used as a performance counter, but can be
+ * used for timeouting. Resolution is milliseconds.
+ */
+uint64_t mm_timestamp();
+/*
+ * Create a channel-to-channel mapping. This API should not
+ * be used by backends. It is only exported for core modules.
+ */
int mm_map_channel(channel* from, channel* to);
#endif