10 lines
264 B
Go
10 lines
264 B
Go
|
package winloader
|
||
|
|
||
|
import (
|
||
|
"github.com/jchv/go-winloader/internal/pe"
|
||
|
)
|
||
|
|
||
|
// NativeArch is a constant that will be equal to the PE machine type
|
||
|
// enumeration value that corresponds to the arch the binary is running as.
|
||
|
const NativeArch = pe.ImageFileMachinei386
|