q/src/elf/SectionType.go
Eduard Urbach cc2e98ca49
All checks were successful
/ test (push) Successful in 15s
Added a linker
2025-06-23 16:19:16 +02:00

19 lines
No EOL
540 B
Go

package elf
// SectionType defines the type of the section.
type SectionType int32
const (
SectionTypeNULL SectionType = 0
SectionTypePROGBITS SectionType = 1
SectionTypeSYMTAB SectionType = 2
SectionTypeSTRTAB SectionType = 3
SectionTypeRELA SectionType = 4
SectionTypeHASH SectionType = 5
SectionTypeDYNAMIC SectionType = 6
SectionTypeNOTE SectionType = 7
SectionTypeNOBITS SectionType = 8
SectionTypeREL SectionType = 9
SectionTypeSHLIB SectionType = 10
SectionTypeDYNSYM SectionType = 11
)