class MachO::LoadCommands::PreboundDylibCommand
A load command used to indicate dynamic libraries used in prebinding. Corresponds to LC_PREBOUND_DYLIB.
Constants
- FORMAT
@see MachOStructure::FORMAT @api private
- SIZEOF
@see MachOStructure::SIZEOF @api private
Attributes
linked_modules[R]
@return [Fixnum] a bit vector of linked modules
name[R]
@return [LCStr] the library's path
name as an LCStr
nmodules[R]
@return [Fixnum] the number of modules in the library
Public Class Methods
new(view, cmd, cmdsize, name, nmodules, linked_modules)
click to toggle source
@api private
Calls superclass method
MachO::LoadCommands::LoadCommand.new
# 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