Added Mach-O file format

This commit is contained in:
2024-08-11 21:15:47 +02:00
parent cc215a27c7
commit 58f010b81a
10 changed files with 266 additions and 4 deletions

8
src/macho/Thread.go Normal file
View File

@ -0,0 +1,8 @@
package macho
// Thread is a thread state load command.
type Thread struct {
LoadCommand
Len uint32
Type uint32
}