| 466 | } |
| 467 | |
| 468 | static int emu_debuggerloop(lua_State *L) { |
| 469 | #ifdef __WIN_DRIVER__ |
| 470 | extern void win_debuggerLoop(); |
| 471 | win_debuggerLoop(); |
| 472 | #endif |
| 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | static int emu_debuggerloopstep(lua_State *L) { |
| 477 | #ifdef __WIN_DRIVER__ |
nothing calls this directly
no test coverage detected