| 483 | return 1; |
| 484 | } |
| 485 | static int SetSplash(lua_State* L)LNOEXCEPT |
| 486 | { |
| 487 | LAPP.SetSplash(lua_toboolean(L, 1) == 0 ? false : true); |
| 488 | return 0; |
| 489 | } |
| 490 | static int SetTitle(lua_State* L)LNOEXCEPT |
| 491 | { |
| 492 | LAPP.SetTitle(luaL_checkstring(L, 1)); |
nothing calls this directly
no outgoing calls
no test coverage detected