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

32 lines
574 B
Go
Raw Normal View History

// +build windows
2014-04-22 09:44:22 +09:00
package gopsutil
import (
"syscall"
2014-05-16 11:33:35 +09:00
"unsafe"
)
2014-04-20 01:53:00 +09:00
var (
2014-11-27 22:28:05 +09:00
Modkernel32 = syscall.NewLazyDLL("kernel32.dll")
ModNt = syscall.NewLazyDLL("ntdll.dll")
2014-11-27 22:28:05 +09:00
ProcGetSystemTimes = Modkernel32.NewProc("GetSystemTimes")
ProcNtQuerySystemInformation = ModNt.NewProc("NtQuerySystemInformation")
2014-04-20 01:53:00 +09:00
)
type FILETIME struct {
DwLowDateTime uint32
DwHighDateTime uint32
}
2014-05-16 11:33:35 +09:00
// borrowed from net/interface_windows.go
func BytePtrToString(p *uint8) string {
2014-05-16 11:33:35 +09:00
a := (*[10000]uint8)(unsafe.Pointer(p))
i := 0
for a[i] != 0 {
i++
}
return string(a[:i])
}