From bc89c3f0155013b615ba403078b919914b18c284 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Thu, 28 Sep 2023 21:38:35 -0400 Subject: correct LibraryFunctionSymbol documentation --- python/types.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'python') diff --git a/python/types.py b/python/types.py index 97f131e1..f4df25f1 100644 --- a/python/types.py +++ b/python/types.py @@ -383,17 +383,17 @@ class Symbol(CoreSymbol): """ Symbols are defined as one of the following types: - =========================== ============================================================== + =========================== ================================================================= SymbolType Description - =========================== ============================================================== + =========================== ================================================================= FunctionSymbol Symbol for function that exists in the current binary ImportAddressSymbol Symbol defined in the Import Address Table ImportedFunctionSymbol Symbol for a function that is not defined in the current binary DataSymbol Symbol for data in the current binary ImportedDataSymbol Symbol for data that is not defined in the current binary ExternalSymbol Symbols for data and code that reside outside the BinaryView - LibraryFunctionSymbol Symbols for external functions outside the library - =========================== ============================================================== + LibraryFunctionSymbol Symbols for functions identified as belonging to a shared library + =========================== ================================================================= """ def __init__( self, sym_type, addr, short_name, full_name=None, raw_name=None, binding=None, namespace=None, ordinal=0 -- cgit v1.3.1