| 68 | } |
| 69 | |
| 70 | int lua_pcall_worker(lua_State* L, int nargs, int nresults, int errfunc) |
| 71 | { |
| 72 | LPVOID lp; |
| 73 | LhBarrierGetCallback(&lp); |
| 74 | const auto pcall = (_lua_pcall)lp; |
| 75 | EmmyFacade::Get().Attach(L); |
| 76 | return pcall(L, nargs, nresults, errfunc); |
| 77 | } |
| 78 | |
| 79 | int lua_pcallk_worker(lua_State* L, int nargs, int nresults, int errfunc, lua_KContext ctx, lua_KFunction k) |
| 80 | { |
nothing calls this directly
no test coverage detected