aboutsummaryrefslogtreecommitdiffstats
path: root/lib/LuaJIT/lj_ff.h
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-25 15:23:18 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-25 15:23:18 -0400
commit7f32dc3140cd4c283d837f98bd6cf8c36c15c62b (patch)
treed7ab0b9a4e5c706a342a65adba36e1a055c7078c /lib/LuaJIT/lj_ff.h
parentdcdc83d274c122fcfa601b98791e80eae711da33 (diff)
Added LuaJIT library files
Diffstat (limited to 'lib/LuaJIT/lj_ff.h')
-rw-r--r--lib/LuaJIT/lj_ff.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/LuaJIT/lj_ff.h b/lib/LuaJIT/lj_ff.h
new file mode 100644
index 0000000..31d65a0
--- /dev/null
+++ b/lib/LuaJIT/lj_ff.h
@@ -0,0 +1,18 @@
+/*
+** Fast function IDs.
+** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h
+*/
+
+#ifndef _LJ_FF_H
+#define _LJ_FF_H
+
+/* Fast function ID. */
+typedef enum {
+ FF_LUA_ = FF_LUA, /* Lua function (must be 0). */
+ FF_C_ = FF_C, /* Regular C function (must be 1). */
+#define FFDEF(name) FF_##name,
+#include "lj_ffdef.h"
+ FF__MAX
+} FastFunc;
+
+#endif