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