mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-25 23:51:06 +00:00
11 lines
170 B
Go
11 lines
170 B
Go
//+build windows
|
|
|
|
// Windows API functions for manipulating ACLs.
|
|
package api
|
|
|
|
import (
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
var advapi32 = windows.MustLoadDLL("advapi32.dll")
|