push a table on lua stack: {width=wid, height=hei} */
| 3047 | |
| 3048 | /* push a table on lua stack: {width=wid, height=hei} */ |
| 3049 | staticfn void |
| 3050 | l_push_wid_hei_table(lua_State *L, int wid, int hei) |
| 3051 | { |
| 3052 | lua_newtable(L); |
| 3053 | nhl_add_table_entry_int(L, "width", wid); |
| 3054 | nhl_add_table_entry_int(L, "height", hei); |
| 3055 | } |
| 3056 | |
| 3057 | /* push a table on lua stack containing room data */ |
| 3058 | staticfn void |
no test coverage detected