()
| 327 | #[allow(non_snake_case)] |
| 328 | #[no_mangle] |
| 329 | pub extern "C" fn CorePluginInit() -> bool { |
| 330 | Logger::new("IDB Import") |
| 331 | .with_level(LevelFilter::Error) |
| 332 | .init(); |
| 333 | DebugInfoParser::register("IDB Parser", IDBDebugInfoParser); |
| 334 | DebugInfoParser::register("TIL Parser", TILDebugInfoParser); |
| 335 | true |
| 336 | } |
nothing calls this directly
no test coverage detected