summaryrefslogtreecommitdiff
path: root/src/honeysuckle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/honeysuckle.h')
-rw-r--r--src/honeysuckle.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/honeysuckle.h b/src/honeysuckle.h
new file mode 100644
index 0000000..7538791
--- /dev/null
+++ b/src/honeysuckle.h
@@ -0,0 +1,27 @@
+#ifndef HONEYSUCKLE_H
+#define HONEYSUCKLE_H
+
+#include <lua.h>
+#include <lualib.h>
+#include <lauxlib.h>
+
+
+#define HS_END 0
+
+/* type constants */
+#define HS_BOOL 1
+#define HS_INT 2
+#define HS_NUM 3
+#define HS_STR 4
+#define HS_TBL 5
+#define HS_FUNC 6
+#define HS_CFUNC 7
+#define HS_USER 8
+#define HS_LIGHT 9
+#define HS_NIL 10
+#define HS_ANY 11
+
+
+void hs_pushstring(lua_State *L, const char *format_string, ...);
+
+#endif