class MachO::LoadCommands::FvmlibCommand

An obsolete load command containing the path to a library to be loaded into memory. Corresponds to LC_LOADFVMLIB and LC_IDFVMLIB.

Constants

FORMAT

@see MachOStructure::FORMAT @api private

SIZEOF

@see MachOStructure::SIZEOF @api private

Attributes

header_addr[R]

@return [Fixnum] the library's header address

minor_version[R]

@return [Fixnum] the library's minor version number

name[R]

@return [LCStr] the library's target pathname

Public Class Methods

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