summaryrefslogtreecommitdiff
path: root/libgo/go/internal/syscall/windows/symlink_windows.go
blob: cc2163e93347dddfd7d573a8611af0ea4fceb27f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package windows

import "syscall"

const (
	ERROR_INVALID_PARAMETER syscall.Errno = 87

	// symlink support for CreateSymbolicLink() starting with Windows 10 (1703, v10.0.14972)
	SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE = 0x2
)