Files
integration/luprex/syscpp/table.hpp

12 lines
194 B
C++
Raw Normal View History

2020-11-27 13:21:07 -05:00
#ifndef TABLE_HPP
#define TABLE_HPP
2020-11-13 18:17:47 -05:00
2020-11-27 13:21:07 -05:00
#include "luastack.hpp"
2020-11-13 18:17:47 -05:00
int lpx_table_clear(lua_State *L);
int lpx_table_coerce(lua_State *L);
2020-11-15 16:49:42 -05:00
void luaopen_lpx_table (lua_State *L);
2020-11-13 18:17:47 -05:00
2020-11-27 13:21:07 -05:00
#endif // TABLE_HPP