2010-06-11 15:38:22 +00:00
|
|
|
|
|
|
|
// Variables
|
|
|
|
extern SymbolTable_t g_aSymbols[ NUM_SYMBOL_TABLES ];
|
|
|
|
|
|
|
|
// Prototypes
|
|
|
|
|
|
|
|
Update_t _CmdSymbolsClear ( SymbolTable_Index_e eSymbolTable );
|
|
|
|
Update_t _CmdSymbolsCommon ( int nArgs, SymbolTable_Index_e eSymbolTable );
|
|
|
|
Update_t _CmdSymbolsListTables (int nArgs, int bSymbolTables );
|
|
|
|
Update_t _CmdSymbolsUpdate ( int nArgs, int bSymbolTables );
|
|
|
|
|
|
|
|
bool _CmdSymbolList_Address2Symbol ( int nAddress , int bSymbolTables );
|
|
|
|
bool _CmdSymbolList_Symbol2Address ( LPCTSTR pSymbol, int bSymbolTables );
|
|
|
|
|
|
|
|
// SymbolOffset
|
2019-09-06 17:34:25 +01:00
|
|
|
int ParseSymbolTable ( const std::string & pFileName, SymbolTable_Index_e eWhichTableToLoad, int nSymbolOffset = 0 );
|
2010-06-11 15:38:22 +00:00
|
|
|
|