From 05f9b6434be1eb5c195e8df5172f0a64f5bef217 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Wed, 15 Apr 2020 02:08:37 -0400 Subject: small documentation update for SymbolType table --- python/types.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'python') 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): -- cgit v1.3.1