diff options
| author | Alexander Taylor <alex@vector35.com> | 2025-11-03 14:31:20 -0500 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2025-11-03 14:34:48 -0500 |
| commit | 0c55bf12f6148a8f3c4b1af66c950d73e371b351 (patch) | |
| tree | 18b067b2d5f81a15e726fa7c4c43911f8d774476 /binaryninjaapi.h | |
| parent | 4bbf5434655da660322205b9db590c524bef4aa8 (diff) | |
Add helpers for whether a function is exported.
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 85efc449..57dbb3ac 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -12352,6 +12352,11 @@ namespace BinaryNinja { */ Ref<Symbol> GetSymbol() const; + /*! + \return Whether the function's symbol is globally or weakly bound (treated as exported) + */ + bool IsExported() const; + /*! Whether this function was automatically discovered by analysis \return Whether the function was automatically discovered |
