Files
2024-11-01 17:43:06 +00:00

17 lines
258 B
Go

// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
//go:build windows
package pe
import (
dpe "debug/pe"
)
type optionalHeaderForGOARCH = optionalHeader32
const (
expectedMachineForGOARCH = dpe.IMAGE_FILE_MACHINE_I386
)