Added macho package
All checks were successful
/ test (push) Successful in 15s

This commit is contained in:
Eduard Urbach 2025-06-30 20:31:07 +02:00
parent 436691ae40
commit dbc865ee67
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
14 changed files with 317 additions and 0 deletions

12
src/macho/HeaderType.go Normal file
View file

@ -0,0 +1,12 @@
package macho
type HeaderType uint32
const (
TypeObject HeaderType = 0x1
TypeExecute HeaderType = 0x2
TypeCore HeaderType = 0x4
TypeDylib HeaderType = 0x6
TypeBundle HeaderType = 0x8
TypeDsym HeaderType = 0xA
)