Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
Update API submodule to core ABI v20
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpalmisc committed May 12, 2022
1 parent 99d77b6 commit 6ac96c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vendor/BinaryNinjaAPI
Submodule BinaryNinjaAPI updated 99 files
+1 −0 .github/ISSUE_TEMPLATE/bug_report.md
+3 −3 CMakeLists.txt
+1 −1 README.md
+28 −13 api-docs/source/conf.py
+13 −0 architecture.cpp
+6 −0 basicblock.cpp
+467 −2 binaryninjaapi.h
+193 −16 binaryninjacore.h
+82 −10 binaryview.cpp
+8 −0 binaryviewtype.cpp
+9 −0 database.cpp
+4 −4 demangle.cpp
+8 −5 docs/about/open-source.md
+1 −1 docs/dev/api.md
+13 −0 docs/dev/bnil-overview.md
+17 −0 docs/dev/plugins.md
+20 −3 docs/getting-started.md
+280 −0 docs/guide/debugger.md
+5 −0 docs/guide/troubleshooting.md
+ docs/img/debugger/adaptersettings.png
+ docs/img/debugger/breakpointwidget.png
+ docs/img/debugger/contextmenu.png
+ docs/img/debugger/controlbuttons.png
+ docs/img/debugger/debuggerconsole.png
+ docs/img/debugger/debuggerview.png
+ docs/img/debugger/modulewidget.png
+ docs/img/debugger/registerwidget.png
+ docs/img/debugger/stacktracewidget.png
+ docs/img/debugger/stackvariable.png
+ docs/img/debugger/statuswidget.png
+ docs/img/debugger/statuswidget2.png
+ docs/img/debugger/syncgroup.png
+ docs/img/debugger/targetterminal.png
+ docs/img/debugger/ui.png
+0 −6 examples/triage/CMakeLists.txt
+0 −6 examples/uinotification/CMakeLists.txt
+15 −0 filemetadata.cpp
+36 −9 function.cpp
+1 −1 highlevelil.cpp
+2 −0 lowlevelilinstruction.cpp
+1 −1 mediumlevelil.cpp
+1 −0 mkdocs-stable.yml
+1 −0 mkdocs.yml
+4 −4 platform.cpp
+1 −2 python/CMakeLists.txt
+18 −1 python/__init__.py
+1 −0 python/basicblock.py
+45 −21 python/binaryview.py
+1 −1 python/callingconvention.py
+5 −0 python/commonil.py
+14 −2 python/database.py
+24 −25 python/debuginfo.py
+28 −1 python/decorators.py
+66 −23 python/enterprise.py
+0 −32 python/enum/LICENSE
+0 −3 python/enum/README
+0 −824 python/enum/__init__.py
+54 −0 python/examples/make_code.py
+23 −4 python/function.py
+12 −0 python/generator.cpp
+7 −13 python/highlevelil.py
+3 −6 python/interaction.py
+2 −2 python/lineardisassembly.py
+16 −2 python/lowlevelil.py
+2 −2 python/mediumlevelil.py
+1 −1 python/metadata.py
+5 −3 python/plugin.py
+17 −7 python/scriptingprovider.py
+133 −0 python/secretsprovider.py
+40 −24 python/typelibrary.py
+589 −0 python/typeparser.py
+390 −0 python/typeprinter.py
+258 −144 python/types.py
+1 −1 python/websocketprovider.py
+1 −1 rust/README.md
+62 −34 rust/src/custombinaryview.rs
+1 −1 rust/src/lib.rs
+34 −0 rust/src/types.rs
+7 −1 scriptingprovider.cpp
+11 −5 scripts/install_api.py
+0 −2 scripts/test_build_extern.py
+6 −1 sphinx_rtd/layout.html
+439 −23 suite/api_test.py
+14 −0 suite/generator.py
+64 −71 suite/testcommon.py
+204 −13 type.cpp
+513 −0 typeparser.cpp
+400 −0 typeprinter.cpp
+7 −1 ui/clickablelabel.h
+5 −2 ui/createtypedialog.h
+2 −1 ui/flowgraphwidget.h
+1 −1 ui/linearview.h
+4 −8 ui/logview.h
+10 −1 ui/pane.h
+2 −1 ui/scriptingconsole.h
+1 −0 ui/settingsview.h
+1 −1 ui/tokenizedtextview.h
+10 −0 ui/uicontext.h
+20 −11 ui/viewframe.h

0 comments on commit 6ac96c0

Please sign in to comment.