Added Windows support
Some checks failed
/ test (push) Failing after 15s

This commit is contained in:
Eduard Urbach 2025-07-01 13:37:40 +02:00
parent dbc865ee67
commit 12e0ccf7b2
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
36 changed files with 738 additions and 42 deletions

View file

@ -0,0 +1,14 @@
package pe
type SectionCharacteristics uint32
const (
IMAGE_SCN_CNT_CODE SectionCharacteristics = 0x00000020
IMAGE_SCN_CNT_INITIALIZED_DATA SectionCharacteristics = 0x00000040
IMAGE_SCN_CNT_UNINITIALIZED_DATA SectionCharacteristics = 0x00000080
IMAGE_SCN_LNK_COMDAT SectionCharacteristics = 0x00001000
IMAGE_SCN_MEM_DISCARDABLE SectionCharacteristics = 0x02000000
IMAGE_SCN_MEM_EXECUTE SectionCharacteristics = 0x20000000
IMAGE_SCN_MEM_READ SectionCharacteristics = 0x40000000
IMAGE_SCN_MEM_WRITE SectionCharacteristics = 0x80000000
)