mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
12 lines
118 B
Go
12 lines
118 B
Go
// +build windows
|
|
|
|
package gopsutil
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
var (
|
|
modKernel32 = syscall.NewLazyDLL("kernel32.dll")
|
|
)
|