class Metasm::ELF::RelocationAddend
Attributes
addend[RW]
Public Instance Methods
struct_specialized(elf)
click to toggle source
# File metasm/exe_format/elf.rb, line 531 def struct_specialized(elf) return RelocationAddend32 if not elf case elf.bitsize when 32; RelocationAddend32 else RelocationAddend64 end end