summaryrefslogtreecommitdiff
path: root/src/hs_process_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hs_process_table.c')
-rw-r--r--src/hs_process_table.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/hs_process_table.c b/src/hs_process_table.c
new file mode 100644
index 0000000..9d72253
--- /dev/null
+++ b/src/hs_process_table.c
@@ -0,0 +1,15 @@
+#include "honeysuckle.h"
+
+void hs_pt_set_boolean(bool value, void *data) {}
+void hs_pt_set_integer(lua_Integer value, void *data) {}
+void hs_pt_set_number(lua_Number value, void *data) {}
+void hs_pt_set_string(const char *value, void *data) {}
+
+
+void hs_process_table_(lua_State *L,
+ int table_index,
+ int n_processors,
+ struct hs_table_processor *processors)
+{
+
+}