class Pliney::MachO::MachHeader64Reader

Attributes

_reserved[R]

Public Instance Methods

parse() click to toggle source
# File lib/pliney/macho.rb, line 324
def parse()
    super()
    @_reserved = @fh.read_uint32le
    unless MachO::is_macho64_magic(@magic)
        raise(ReaderError, "Unexpected magic value for Mach 64 header: 0x%0.8x" % @magic)
    end
    _parse_load_commands()
end