The main way to open and load files into Binary Ninja. Make sure you've properly initialized the core before calling this function. See [`crate::headless::init()`]
(file_path: impl AsRef<Path>)
| 118 | |
| 119 | /// The main way to open and load files into Binary Ninja. Make sure you've properly initialized the core before calling this function. See [`crate::headless::init()`] |
| 120 | pub fn load(file_path: impl AsRef<Path>) -> Option<Ref<BinaryView>> { |
| 121 | load_with_progress(file_path, NoProgressCallback) |
| 122 | } |
| 123 | |
| 124 | /// Equivalent to [`load`] but with a progress callback. |
| 125 | /// |