9 lines
235 B
Go
9 lines
235 B
Go
package pe
|
|
|
|
// DOSHeader is at the beginning of each EXE file and nowadays just points
|
|
// to the NTHeader using an absolute file offset.
|
|
type DOSHeader struct {
|
|
Magic [4]byte
|
|
_ [56]byte
|
|
NTHeaderOffset uint32
|
|
}
|