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