mirror of
https://github.com/ENSL/NS.git
synced 2024-11-15 09:21:54 +00:00
4f13237895
Change CRLF to LF in repo.
29 lines
No EOL
670 B
C
29 lines
No EOL
670 B
C
#ifndef AVHLUAUTIL_H
|
|
#define AVHLUAUTIL_H
|
|
|
|
extern "C" {
|
|
#include <lua.h>
|
|
#include <lualib.h>
|
|
#include <lauxlib.h>
|
|
}
|
|
|
|
#define newtable(L) (lua_newtable(L), lua_gettop(L))
|
|
|
|
/*
|
|
void UTIL_LUATablePair(char *key, const char *value);
|
|
void UTIL_LUATablePair(char *key, lua_Number value);
|
|
void UTIL_LUATablePair(char *key, bool value);
|
|
void UTIL_LUATablePair(char *key, lua_CFunction function);
|
|
*/
|
|
|
|
void UTIL_LUARegisterObject(lua_State *L, const luaL_reg *mainmethods, const luaL_reg *metamethods, char *objName);
|
|
|
|
void AvHLUA_OnError(const char *errorMsg);
|
|
#define AvHLUA_Pcall(L, a, b) \
|
|
if (lua_pcall(L, a, b, 0)) \
|
|
{ \
|
|
AvHLUA_OnError(lua_tostring(L, -1)); \
|
|
}
|
|
|
|
|
|
#endif |