Added Windows PE support
This commit is contained in:
parent
2e354befc3
commit
3dffa69f37
20 changed files with 373 additions and 103 deletions
14
src/os/windows/pe/SectionHeader.go
Normal file
14
src/os/windows/pe/SectionHeader.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
package pe
|
||||
|
||||
type SectionHeader struct {
|
||||
Name [8]byte
|
||||
VirtualSize uint32
|
||||
VirtualAddress uint32
|
||||
RawSize uint32
|
||||
RawAddress uint32
|
||||
PointerToRelocations uint32
|
||||
PointerToLineNumbers uint32
|
||||
NumberOfRelocations uint16
|
||||
NumberOfLineNumbers uint16
|
||||
Characteristics uint32
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue