17 lines
259 B
Go
17 lines
259 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build windows
|
|
|
|
package pe
|
|
|
|
import (
|
|
dpe "debug/pe"
|
|
)
|
|
|
|
type optionalHeaderForGOARCH = optionalHeader64
|
|
|
|
const (
|
|
expectedMachineForGOARCH = dpe.IMAGE_FILE_MACHINE_AMD64
|
|
)
|