| 315 | lua_rawset(L, -3); |
| 316 | } |
| 317 | void |
| 318 | nhl_add_table_entry_bool(lua_State *L, const char *name, boolean value) |
| 319 | { |
| 320 | lua_pushstring(L, name); |
| 321 | lua_pushboolean(L, value); |
| 322 | lua_rawset(L, -3); |
| 323 | } |
| 324 | |
| 325 | void |
| 326 | nhl_add_table_entry_region(lua_State *L, const char *name, coordxy x1, |
no outgoing calls
no test coverage detected