diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2020-04-15 02:08:37 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2020-04-28 04:22:29 -0400 |
| commit | 05f9b6434be1eb5c195e8df5172f0a64f5bef217 (patch) | |
| tree | 16db9c55cc030a951a19c86fcc770b437df5233c /python | |
| parent | a6bc43627e3d884c2e9ad559cc67b4d6353dc12e (diff) | |
small documentation update for SymbolType table
Diffstat (limited to 'python')
| -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): |
