//go:build !windows package winpwn import "errors" // ExecuteShellcode is only available when winpwn is built for Windows. func ExecuteShellcode(code []byte) error { return errors.New("ExecuteShellcode requires GOOS=windows") }