class MachO::LoadCommands::FvmfileCommand

An obsolete load command containing the path to a file to be loaded into memory. Corresponds to LC_FVMFILE.

Constants

FORMAT

@see MachOStructure::FORMAT @api private

SIZEOF

@see MachOStructure::SIZEOF @api private

Attributes

header_addr[R]

@return [Fixnum] the virtual address being loaded at

name[R]

@return [LCStr] the pathname of the file being loaded

Public Class Methods

new(view, cmd, cmdsize, name, header_addr) click to toggle source
Calls superclass method MachO::LoadCommands::LoadCommand::new
# File lib/macho/load_commands.rb, line 1315
def initialize(view, cmd, cmdsize, name, header_addr)
  super(view, cmd, cmdsize)
  @name = LCStr.new(self, name)
  @header_addr = header_addr
end