14 lines
308 B
Go
14 lines
308 B
Go
//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
|
|
type Pointer uintptr
|
|
|
|
func RtlGetNtVersionNumbers() (majorVersion, minorVersion, buildNumber uint32) {
|
|
return windows.RtlGetNtVersionNumbers()
|
|
}
|