A load command used to indicate dynamic libraries used in prebinding. Corresponds to LC_PREBOUND_DYLIB.
@see MachOStructure::FORMAT @api private
@see MachOStructure::SIZEOF @api private
@return [Fixnum] a bit vector of linked modules
@return [LCStr] the library's path
name as an LCStr
@return [Fixnum] the number of modules in the library
@api private
# File lib/macho/load_commands.rb, line 569 def initialize(view, cmd, cmdsize, name, nmodules, linked_modules) super(view, cmd, cmdsize) @name = LCStr.new(self, name) @nmodules = nmodules @linked_modules = linked_modules end