class MachO::Headers::MachHeader64

64-bit Mach-O file header structure

Constants

FORMAT

@see MachOStructure::FORMAT @api private

SIZEOF

@see MachOStructure::SIZEOF @api private

Attributes

reserved[R]

@return [void]

Public Class Methods

new(magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags, reserved) click to toggle source

@api private

Calls superclass method MachO::Headers::MachHeader.new
# File lib/macho/headers.rb, line 658
def initialize(magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds,
               flags, reserved)
  super(magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags)
  @reserved = reserved
end