An obsolete load command containing the path to a library to be loaded into memory. Corresponds to LC_LOADFVMLIB and LC_IDFVMLIB.
@see MachOStructure::FORMAT @api private
@see MachOStructure::SIZEOF @api private
@return [Fixnum] the library's header address
@return [Fixnum] the library's minor version number
@return [LCStr] the library's target pathname
# 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