Flattened package hierarchy

This commit is contained in:
Eduard Urbach 2024-08-25 20:38:22 +02:00
parent 12dcf672cb
commit a4dc5a4eff
Signed by: eduard
GPG key ID: 49226B848C78F6C8
89 changed files with 42 additions and 42 deletions

16
src/pe/SectionHeader.go Normal file
View file

@ -0,0 +1,16 @@
package pe
const SectionHeaderSize = 40
type SectionHeader struct {
Name [8]byte
VirtualSize uint32
VirtualAddress uint32
RawSize uint32
RawAddress uint32
PointerToRelocations uint32
PointerToLineNumbers uint32
NumberOfRelocations uint16
NumberOfLineNumbers uint16
Characteristics uint32
}