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 =
"VVVVVVVV"
SIZEOF =
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.



269
270
271
272
273
# File 'lib/macho/headers.rb', line 269

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.



263
264
265
# File 'lib/macho/headers.rb', line 263

def reserved
  @reserved
end