Fat binary header structure @see MachO::FatArch
always big-endian @see MachOStructure::FORMAT @api private
@see MachOStructure::SIZEOF @api private
@return [Fixnum] the magic number of the header (and file)
@return [Fixnum] the number of fat architecture structures following the header
@api private
# File lib/macho/headers.rb, line 469 def initialize(magic, nfat_arch) @magic = magic @nfat_arch = nfat_arch end
@return [String] the serialized fields of the fat header
# File lib/macho/headers.rb, line 475 def serialize [magic, nfat_arch].pack(FORMAT) end