diff options
| author | Brandon Miller <brandon@vector35.com> | 2024-04-11 10:40:09 -0400 |
|---|---|---|
| committer | Brandon Miller <bkmiller89@icloud.com> | 2024-04-25 10:56:18 -0400 |
| commit | 465a8d5d7afd5a5648338009e0fb8dbe4f199347 (patch) | |
| tree | f3ead9b2b65a291fd7a97b2ddbbda2f10a5462ac /examples/triage/baseaddress.h | |
| parent | 4b2b3d561b92a01f4d29b86d5510d39e4d1accf3 (diff) | |
Querying candidate base address reasons
Querying vector of reason information for a candidate base address
using the new core API
Diffstat (limited to 'examples/triage/baseaddress.h')
| -rw-r--r-- | examples/triage/baseaddress.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/triage/baseaddress.h b/examples/triage/baseaddress.h index aa5e70ab..f6dc79f1 100644 --- a/examples/triage/baseaddress.h +++ b/examples/triage/baseaddress.h @@ -28,7 +28,9 @@ struct BaseAddressDetectionQtResults { std::string Status; std::set<std::pair<size_t, uint64_t>> Scores; - BinaryNinja::BaseAddressDetectionConfidence Confidence; + BNBaseAddressDetectionConfidence Confidence; + std::map<uint64_t, std::vector<BNBaseAddressDetectionReason>> Reasons; + uint64_t LastTestedBaseAddress; }; class BaseAddressDetectionThread : public QThread |
