diff options
author | aunsane <aunsane@gmail.com> | 2018-06-06 00:34:46 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2018-06-06 00:35:01 +0300 |
commit | a7034dc19a8849bf82d2eb420b150ac54dc079d8 (patch) | |
tree | 75eb7818df9cc9d707bf2c5a010b31ae2340f971 /plugins/MirLua/src/stdafx.h | |
parent | 3c13c94d636ce2c38ca64bbe3febbad68296c661 (diff) |
MirLua:
- add new helper function luaM_isarray
- fix print of decimal point
m_json module
- add __pairs metamethod support
- simplify code
m_http module
- send function should create copy of request object to prevent side effects in async calls
- fix lua functions call
- fix memory leaks
Diffstat (limited to 'plugins/MirLua/src/stdafx.h')
-rw-r--r-- | plugins/MirLua/src/stdafx.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/MirLua/src/stdafx.h b/plugins/MirLua/src/stdafx.h index 9f0397a828..498bf9ac5d 100644 --- a/plugins/MirLua/src/stdafx.h +++ b/plugins/MirLua/src/stdafx.h @@ -87,3 +87,5 @@ int luaM_pcall(lua_State *L, int n = 0, int r = 0); int luaM_getenv(lua_State *L);
bool luaM_toboolean(lua_State *L, int idx);
+
+bool luaM_isarray(lua_State *L, int idx);
|