diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2025-10-13 19:35:01 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty.wagner@gmail.com> | 2025-10-21 13:52:39 -0400 |
| commit | 5d4fc5f1fb7a0c368d2a048a5d750564c970c9c9 (patch) | |
| tree | cd740b4af25fe5184935fd67067025733f17b099 /highlevelilinstruction.h | |
| parent | cae26921cf2b2e564f66e58b77a3963fe36f6d2d (diff) | |
Add derived strings and string recognizer API
Diffstat (limited to 'highlevelilinstruction.h')
| -rw-r--r-- | highlevelilinstruction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/highlevelilinstruction.h b/highlevelilinstruction.h index 2e10c485..9be7d7c5 100644 --- a/highlevelilinstruction.h +++ b/highlevelilinstruction.h @@ -405,6 +405,10 @@ namespace BinaryNinja void SetAttribute(BNILInstructionAttribute attribute, bool state = true); void ClearAttribute(BNILInstructionAttribute attribute); + std::optional<DerivedString> GetDerivedStringReference() const; + void SetDerivedStringReference(const DerivedString& str); + void RemoveDerivedStringReference(); + size_t GetInstructionIndex() const; HighLevelILInstruction GetInstruction() const; |
