| 942 | } |
| 943 | |
| 944 | static int dfhack_cowrap (lua_State *L) { |
| 945 | luaL_checktype(L, 1, LUA_TFUNCTION); |
| 946 | lua_settop(L, 1); |
| 947 | Lua::NewCoroutine(L); |
| 948 | lua_pushcclosure(L, dfhack_coauxwrap, 1); |
| 949 | return 1; |
| 950 | } |
| 951 | |
| 952 | static void add_luacov_coroutine_wrapper(lua_State *L) |
| 953 | { |
nothing calls this directly
no test coverage detected