MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / CorePluginInit

Function CorePluginInit

plugins/dwarf/dwarf_export/src/lib.rs:804–816  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

802
803#[no_mangle]
804pub 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}

Callers

nothing calls this directly

Calls 3

register_commandFunction · 0.85
with_levelMethod · 0.80
initMethod · 0.45

Tested by

no test coverage detected