Class: MachO::MachHeader64

Inherits:
MachHeader show all
Defined in:
lib/macho/headers.rb

Overview

64-bit Mach-O file header structure

Constant Summary collapse

FORMAT =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

"L=8".freeze
SIZEOF =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

32

Instance Attribute Summary collapse

Attributes inherited from MachHeader

#cpusubtype, #cputype, #filetype, #flags, #magic, #ncmds, #sizeofcmds

Instance Method Summary collapse

Methods inherited from MachHeader

#flag?

Methods inherited from MachOStructure

bytesize, new_from_bin

Constructor Details

#initialize(magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags, reserved) ⇒ MachHeader64

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of MachHeader64.



581
582
583
584
585
# File 'lib/macho/headers.rb', line 581

def initialize(magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds,
               flags, reserved)
  super(magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags)
  @reserved = reserved
end

Instance Attribute Details

#reservedvoid (readonly)

This method returns an undefined value.



570
571
572
# File 'lib/macho/headers.rb', line 570

def reserved
  @reserved
end