mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-26 16:11:07 +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")
|