| 5408 | } |
| 5409 | |
| 5410 | static int cdl_pausecdlogging(lua_State *L) |
| 5411 | { |
| 5412 | #ifdef __WIN_DRIVER__ |
| 5413 | lua_pushinteger(L, PauseCDLogging()); |
| 5414 | #else |
| 5415 | lua_pushinteger(L, 0); |
| 5416 | #endif |
| 5417 | return 1; |
| 5418 | } |
| 5419 | |
| 5420 | static int cdl_startcdlogging(lua_State *L) |
| 5421 | { |
nothing calls this directly
no test coverage detected