#ifndef API_H #define API_H #include #include #include /* compatibility layer: https://github.com/lunarmodules/lua-compat-5.3 */ #include "compat/compat-5.3.h" #define API_TYPE_FONT "Font" #define API_TYPE_REGEX "Regex" #define API_TYPE_THREAD "Thread" #define API_TYPE_CHANNEL "Channel" #define API_TYPE_PROCESS "Process" #define API_TYPE_DIRMONITOR "Dirmonitor" #define API_TYPE_NATIVE_PLUGIN "NativePlugin" #define API_TYPE_SHARED_MEMORY "SharedMemory" #define API_TYPE_RENWINDOW "RenWindow" #define API_CONSTANT_DEFINE(L, idx, key, n) (lua_pushnumber(L, n), lua_setfield(L, idx - 1, key)) void api_load_libs(lua_State *L); #endif