Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Bump vendored binaryninja-api
Browse files Browse the repository at this point in the history
  • Loading branch information
emesare committed Dec 7, 2023
1 parent 005e3cd commit aca124d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binaryninja-api
Submodule binaryninja-api updated 74 files
+7 −1 architecture.cpp
+31 −19 binaryninjaapi.h
+31 −17 binaryninjacore.h
+21 −1 binaryview.cpp
+7 −0 datarenderer.cpp
+11 −11 debuginfo.cpp
+1 −1 docs/dev/annotation.md
+16 −0 docs/dev/concepts.md
+9 −11 docs/dev/uidf.md
+4 −1 docs/guide/index.md
+2 −0 examples/mlil_parser/src/mlil_parser.cpp
+4 −2 examples/triage/exports.cpp
+4 −2 examples/triage/imports.cpp
+2 −2 examples/triage/strings.cpp
+7 −1 flowgraphnode.cpp
+27 −0 function.cpp
+6 −0 interaction.cpp
+44 −2 lowlevelilinstruction.cpp
+11 −0 lowlevelilinstruction.h
+96 −50 mediumlevelilinstruction.cpp
+42 −37 mediumlevelilinstruction.h
+1 −0 metadata.cpp
+33 −0 platform/windows-kernel/CMakeLists.txt
+13 −0 platform/windows-kernel/LICENSE
+23 −0 platform/windows-kernel/README.md
+167 −0 platform/windows-kernel/platform_windows_kernel.cpp
+2 −2 python/basicblock.py
+12 −9 python/binaryview.py
+14 −10 python/datarender.py
+6 −6 python/function.py
+9 −2 python/highlevelil.py
+50 −1 python/lowlevelil.py
+21 −0 python/mainthread.py
+63 −8 python/mediumlevelil.py
+1 −1 python/scriptingprovider.py
+1 −0 python/settings.py
+1 −0 python/types.py
+1 −0 relocationhandler.cpp
+14 −0 rust/Cargo.lock
+2 −0 rust/Cargo.toml
+4 −1 rust/README.md
+4 −5 rust/examples/basic_script/src/main.rs
+8 −8 rust/examples/dwarf/dwarf_export/CMakeLists.txt
+9 −8 rust/examples/dwarf/dwarf_import/CMakeLists.txt
+16 −5 rust/examples/dwarf/dwarf_import/src/dwarfdebuginfo.rs
+16 −0 rust/examples/mlil_lifter/Cargo.toml
+68 −0 rust/examples/mlil_lifter/build.rs
+49 −0 rust/examples/mlil_lifter/src/main.rs
+16 −0 rust/examples/mlil_visitor/Cargo.toml
+68 −0 rust/examples/mlil_visitor/build.rs
+266 −0 rust/examples/mlil_visitor/src/main.rs
+4 −5 rust/examples/template/src/main.rs
+22 −1 rust/src/function.rs
+55 −1 rust/src/headless.rs
+1 −1 rust/src/interaction.rs
+7 −7 rust/src/lib.rs
+63 −0 rust/src/mlil/block.rs
+116 −0 rust/src/mlil/function.rs
+824 −0 rust/src/mlil/instruction.rs
+141 −0 rust/src/mlil/lift.rs
+10 −0 rust/src/mlil/mod.rs
+2,238 −0 rust/src/mlil/operation.rs
+68 −28 rust/src/symbol.rs
+15 −1 rust/src/types.rs
+1 −0 themes/dark-blue.theme
+1 −0 themes/high-contrast.theme
+1 −0 themes/solarized-dark.theme
+1 −0 themes/solarized-light.theme
+25 −8 type.cpp
+21 −0 ui/action.h
+1 −0 ui/createstructdialog.h
+1 −2 ui/symbollist.h
+2 −0 ui/theme.h
+1 −0 ui/uitypes.h

0 comments on commit aca124d

Please sign in to comment.