Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed | ?url?

  1. #ifndef _INVADDRESS_H
  2. #define _INVADDRESS_H
  3. /* invaddress.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* Disassembler                                                              */
  8. /*                                                                           */
  9. /* inverse symbol storage                                                    */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. extern void AddInvSymbol(const char *pSymbolName, LargeWord Value);
  14.  
  15. extern const char *LookupInvSymbol(LargeWord Value);
  16.  
  17. extern int GetMaxInvSymbolNameLen(void);
  18.  
  19. #endif /* _INVADDRESS_H */
  20.