| 5361 | // CDLog functions library |
| 5362 | |
| 5363 | static int cdl_loadcdlog(lua_State *L) |
| 5364 | { |
| 5365 | #ifdef __WIN_DRIVER__ |
| 5366 | const char *nameo = luaL_checkstring(L, 1); |
| 5367 | lua_pushinteger(L, LoadCDLog(nameo)); |
| 5368 | #else |
| 5369 | lua_pushinteger(L, 0); |
| 5370 | #endif |
| 5371 | return 1; |
| 5372 | } |
| 5373 | |
| 5374 | static int cdl_loadfile(lua_State *L) |
| 5375 | { |
nothing calls this directly
no test coverage detected