summaryrefslogtreecommitdiff
path: root/test/cbits/testhook.c
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2022-04-22 23:33:12 +0200
committerTom Smeding <tom@tomsmeding.com>2022-04-22 23:38:30 +0200
commit6ca1e41da1d702467dbfb0d6bf7b463884eedc31 (patch)
tree0a68c1341abdd370b7086985fbc4fc0c0132a2c8 /test/cbits/testhook.c
parent3654951ca31b225c84c1b1fa8eafe34b701c91e6 (diff)
0.2.0: C hook delegate and enable/disable logging
Diffstat (limited to 'test/cbits/testhook.c')
-rw-r--r--test/cbits/testhook.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/cbits/testhook.c b/test/cbits/testhook.c
new file mode 100644
index 0000000..47a774a
--- /dev/null
+++ b/test/cbits/testhook.c
@@ -0,0 +1,10 @@
+#include "Rts.h"
+#include <stdio.h>
+
+static void my_delegate_function(const struct GCDetails_ *d) {
+ printf("Yup test delegate hook worked\n");
+}
+
+void* get_my_delegate_ptr(void) {
+ return my_delegate_function;
+}