class MachO::LoadCommands::PrebindCksumCommand

A load command containing the value of the original checksum for prebound files, or zero. Corresponds to LC_PREBIND_CKSUM.

Constants

FORMAT

@see MachOStructure::FORMAT @api private

SIZEOF

@see MachOStructure::SIZEOF @api private

Attributes

cksum[R]

@return [Fixnum] the checksum or 0

Public Class Methods

new(view, cmd, cmdsize, cksum) click to toggle source

@api private

Calls superclass method MachO::LoadCommands::LoadCommand::new
# File lib/macho/load_commands.rb, line 945
def initialize(view, cmd, cmdsize, cksum)
  super(view, cmd, cmdsize)
  @cksum = cksum
end