diff options
Diffstat (limited to 'python/types.py')
| -rw-r--r-- | python/types.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/python/types.py b/python/types.py index 00810c11..0d766e5c 100644 --- a/python/types.py +++ b/python/types.py @@ -164,12 +164,13 @@ class Symbol(object): =========================== ============================================================== SymbolType Description =========================== ============================================================== - FunctionSymbol Symbol for Function that exists in the current binary + FunctionSymbol Symbol for function that exists in the current binary ImportAddressSymbol Symbol defined in the Import Address Table - ImportedFunctionSymbol Symbol for 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 + 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 =========================== ============================================================== """ def __init__(self, sym_type, addr, short_name, full_name=None, raw_name=None, handle=None, binding=None, namespace=None, ordinal=0): |
