1use std::ffi::c_int;
2
3pub const LUA_IDSIZE: c_int = 256;
4pub const LUA_MINSTACK: c_int = 20;
5pub const LUAI_MAXCSTACK: c_int = 8000;
6pub const LUAI_MAXCALLS: c_int = 20000;
7pub const LUAI_MAXCCALLS: c_int = 200;
8pub const LUA_BUFFERSIZE: c_int = 512;
9pub const LUA_UTAG_LIMIT: c_int = 128;
10pub const LUA_LUTAG_LIMIT: c_int = 128;
11pub const LUA_SIZECLASSES: c_int = 40;
12pub const LUA_MEMORY_CATEGORIES: c_int = 256;
13pub const LUA_MINSTRTABSIZE: c_int = 32;
14pub const LUA_MAXCAPTURES: c_int = 32;
15pub const LUA_VECTOR_SIZE: c_int = 3;