diff options
| -rw-r--r-- | binaryninjacore.h | 3 | ||||
| -rw-r--r-- | ui/symbollist.h | 2 | ||||
| -rw-r--r-- | ui/theme.h | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 7f6b725f..e1aa78e4 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -296,7 +296,8 @@ extern "C" ImportedFunctionSymbol = 2, DataSymbol = 3, ImportedDataSymbol = 4, - ExternalSymbol = 5 + ExternalSymbol = 5, + LibraryFunctionSymbol = 6 }; enum BNSymbolBinding diff --git a/ui/symbollist.h b/ui/symbollist.h index aa61abf3..21f30d0b 100644 --- a/ui/symbollist.h +++ b/ui/symbollist.h @@ -100,7 +100,7 @@ public: return false; } - bool isFunc() const { return (getType() == FunctionSymbol) || (getType() == ImportedFunctionSymbol); } + bool isFunc() const { return (getType() == FunctionSymbol) || (getType() == ImportedFunctionSymbol) || (getType() == LibraryFunctionSymbol); } uint64_t getStart() const { return sym->GetAddress(); } std::string getName() const { return name; } std::string getRawName() const { return rawName; } @@ -98,7 +98,8 @@ enum ThemeColor FeatureMapUnicodeStringColor, FeatureMapFunctionColor, FeatureMapImportColor, - FeatureMapExternColor + FeatureMapExternColor, + FeatureMapLibraryColor }; void BINARYNINJAUIAPI initThemes(); |
