A load command containing the offsets and sizes of the link-edit 4.3BSD “stab” style symbol table information. Corresponds to LC_SYMTAB.
@see MachOStructure::FORMAT @api private
@see MachOStructure::SIZEOF @api private
@return [Fixnum] the number of symbol table entries
@return the string table's offset
@return the string table size in bytes
@return [Fixnum] the symbol table's offset
@api private
# File lib/macho/load_commands.rb, line 763 def initialize(view, cmd, cmdsize, symoff, nsyms, stroff, strsize) super(view, cmd, cmdsize) @symoff = symoff @nsyms = nsyms @stroff = stroff @strsize = strsize end