summaryrefslogtreecommitdiff
path: root/src/honeysuckle.c
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2021-09-04 01:21:54 -0500
committersanine <sanine.not@pm.me>2021-09-04 01:21:54 -0500
commitc5befe281c1ce96471d391bff9708e0cd8eadb4b (patch)
tree01515d8e9743275f044973593c5f181ccbe7050f /src/honeysuckle.c
parent22a39a8a55aaf6aa15cbaf82c2f26450335196e3 (diff)
update hs_process_table tests for new api
Diffstat (limited to 'src/honeysuckle.c')
-rw-r--r--src/honeysuckle.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/honeysuckle.c b/src/honeysuckle.c
deleted file mode 100644
index 2689544..0000000
--- a/src/honeysuckle.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include "honeysuckle.h"
-
-int hs_create_enum(lua_State *L, ...)
-{
- lua_createtable(L, 0, 0);
- L = L;
- return 0;
-}
-
-
-void hs_process_table(lua_State *L, int table_index, void *data, ...)
-{
- L = L;
- table_index = table_index;
- data = data;
-}
-
-void hs_pt_set_boolean(bool value, void *data) { value=value; data=data; }
-void hs_pt_set_integer(lua_Integer value, void *data) { value=value; data=data; }
-void hs_pt_set_number(lua_Number value, void *data) { value=value; data=data; }
-void hs_pt_set_string(const char *value, void *data) { value=value; data=data; }