()
| 802 | |
| 803 | #[no_mangle] |
| 804 | pub extern "C" fn CorePluginInit() -> bool { |
| 805 | Logger::new("DWARF Export") |
| 806 | .with_level(LevelFilter::Debug) |
| 807 | .init(); |
| 808 | |
| 809 | register_command( |
| 810 | "Export as DWARF", |
| 811 | "Export current analysis state and annotations as DWARF for import into other tools", |
| 812 | MyCommand {}, |
| 813 | ); |
| 814 | |
| 815 | true |
| 816 | } |
nothing calls this directly
no test coverage detected