| 550 | return (lua_gettop(L)- args); |
| 551 | } |
| 552 | static int ShowSplashWindow(lua_State* L)LNOEXCEPT |
| 553 | { |
| 554 | if (lua_gettop(L) == 0) |
| 555 | LAPP.ShowSplashWindow(); |
| 556 | else |
| 557 | LAPP.ShowSplashWindow(luaL_checkstring(L, 1)); |
| 558 | return 0; |
| 559 | } |
| 560 | |
| 561 | // 对象控制函数(这些方法将被转发到对象池) |
| 562 | static int GetnObj(lua_State* L)LNOEXCEPT |
nothing calls this directly
no outgoing calls
no test coverage detected