2022-06-18 07:37:39 -04:00
|
|
|
//go:build windows
|
|
|
|
|
|
|
|
// Package win is internal. DO NOT USE.
|
|
|
|
package win
|
|
|
|
|
|
|
|
import "golang.org/x/sys/windows"
|
|
|
|
|
|
|
|
type Handle = windows.Handle
|
|
|
|
type HWND = windows.HWND
|
2022-06-21 09:27:19 -04:00
|
|
|
type Pointer uintptr
|
2022-06-18 11:12:03 -04:00
|
|
|
|
2022-06-20 11:05:11 -04:00
|
|
|
func RtlGetNtVersionNumbers() (majorVersion, minorVersion, buildNumber uint32) {
|
|
|
|
return windows.RtlGetNtVersionNumbers()
|
|
|
|
}
|