mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-12 20:28:27 +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")
|