class MachO::LoadCommands::SymsegCommand

An obsolete load command containing the offset and size of the (GNU style) symbol table information. Corresponds to LC_SYMSEG.

Constants

FORMAT

@see MachOStructure::FORMAT @api private

SIZEOF

@see MachOStructure::SIZEOF @api private

Attributes

offset[R]

@return [Fixnum] the offset to the symbol segment

size[R]

@return [Fixnum] the size of the symbol segment in bytes

Public Class Methods

new(view, cmd, cmdsize, offset, size) click to toggle source

@api private

Calls superclass method MachO::LoadCommands::LoadCommand::new
# File lib/macho/load_commands.rb, line 1278
def initialize(view, cmd, cmdsize, offset, size)
  super(view, cmd, cmdsize)
  @offset = offset
  @size = size
end