An obsolete load command containing the path to a file to be loaded into memory. Corresponds to LC_FVMFILE.
@see MachOStructure::FORMAT @api private
@see MachOStructure::SIZEOF @api private
@return [Fixnum] the virtual address being loaded at
@return [LCStr] the pathname of the file being loaded
# 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