1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-24 13:48:56 +08:00
shirou_gopsutil/common_windows.go

18 lines
237 B
Go

// +build windows
package gopsutil
import (
"syscall"
)
var (
modKernel32 = syscall.NewLazyDLL("kernel32.dll")
modNt = syscall.NewLazyDLL("ntdll.dll")
)
type FILETIME struct {
DwLowDateTime uint32
DwHighDateTime uint32
}