summaryrefslogtreecommitdiff
path: root/src/lua/honey_lua.h
diff options
context:
space:
mode:
authorsanine-a <sanine.not@pm.me>2020-11-29 15:16:42 -0600
committersanine-a <sanine.not@pm.me>2020-11-29 15:16:42 -0600
commit140666204191b218b72274d8d14921c89a6631fd (patch)
tree8436c81dda007e934f6b5cadd41789c677306b44 /src/lua/honey_lua.h
parent146d708c67172a05a62f944b16fdcb0dccc4713d (diff)
refactor: eliminate src subdirectories for honey files
Diffstat (limited to 'src/lua/honey_lua.h')
-rw-r--r--src/lua/honey_lua.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/lua/honey_lua.h b/src/lua/honey_lua.h
deleted file mode 100644
index 90fc2c7..0000000
--- a/src/lua/honey_lua.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef HONEY_LUA_H
-#define HONEY_LUA_H
-
-#include "../common.h"
-
-typedef enum {
- HONEY_INT,
- HONEY_NUM,
- HONEY_STRING,
- HONEY_FUNC
-} honey_lua_type;
-
-typedef struct {
- char* name;
- honey_lua_type type;
- union {
- int integer;
- double number;
- char* string;
- int (*function)(lua_State*);
- } data;
-} honey_lua_element;
-
-/** @brief Push an element to the lua stack.
- *
- * @param[in] L The lua state to push the element to.
- * @param[in] element The honey_lua_element to push to the stack.
- *
- * @returns Nothing.
- */
-void honey_lua_push_element(lua_State* L,
- honey_lua_element element);
-
-/** @brief Create a lua table populated with various elements.
- *
- * @param[in] L The lua state to push the table to.
- * @param[in] elements Array of elements to populate the table.
- * @param[in] n_elements The number of elements in the array.
- *
- * @returns Nothing.
- */
-void honey_lua_create_table(lua_State* L,
- honey_lua_element* elements,
- unsigned int n_elements);
-
-#endif