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

17 lines
190 B
Go
Raw Normal View History

// +build windows
2014-04-22 09:44:22 +09:00
package gopsutil
import (
"syscall"
)
2014-04-20 01:53:00 +09:00
var (
modKernel32 = syscall.NewLazyDLL("kernel32.dll")
)
type FILETIME struct {
DwLowDateTime uint32
DwHighDateTime uint32
}