diff options
| author | Peter LaFosse <peter@vector35.com> | 2025-10-17 10:20:44 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2025-10-22 09:33:28 -0400 |
| commit | 290374ed95c31744ded99280af99bb1f2ec5a37f (patch) | |
| tree | 73c9b2aefe23dca9a1f9f7e1c72300de75a22095 /binaryninjaapi.h | |
| parent | 3e63b6e83ad95663e478a63f39b271d308db6f89 (diff) | |
Add Type::SetIgnored API
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index ecdeabdf..90ee2585 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -10348,6 +10348,11 @@ namespace BinaryNinja { Ref<Type> Duplicate() const; + /*! Call this with setIgnored=True if this Type object is expected to be always resident. + * This prevents the type object from showing up in the results of GetMemoryUsageInfo + */ + Type* SetIgnored(bool setIgnored); + /*! Create a "void" type |
