summaryrefslogtreecommitdiff
path: root/src/c_fl_type.h
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-05-14 14:04:45 +1000
committerJed Barber <jjbarber@y7mail.com>2017-05-14 14:04:45 +1000
commit8262e35fb43d8ab0e1d82d966e3d6bb415a7ade7 (patch)
tree7a69e7f18b992641de7de9cad98dbb44342c7e3e /src/c_fl_type.h
parentf3638a598d55629bf130c648416ca75f5edae1f1 (diff)
Moved hook pointer typedefs to separate file
Diffstat (limited to 'src/c_fl_type.h')
-rw-r--r--src/c_fl_type.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/c_fl_type.h b/src/c_fl_type.h
new file mode 100644
index 0000000..750ae6c
--- /dev/null
+++ b/src/c_fl_type.h
@@ -0,0 +1,16 @@
+
+
+#ifndef FL_TYPE_GUARD
+#define FL_TYPE_GUARD
+
+
+typedef void (d_hook)(void*);
+typedef d_hook* d_hook_p;
+
+
+typedef int (h_hook)(void*,int);
+typedef h_hook* h_hook_p;
+
+
+#endif
+