mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-05-28 08:03:43 +02:00
10 lines
170 B
Go
10 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")
|