mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-14 19:27:58 +08:00
3585d933b8
All the files in this package are Windows-specific. Use build constraints to ensure that they don't build on other platforms instead.
12 lines
318 B
Go
12 lines
318 B
Go
//go:generate cmd /c go tool cgo -godefs types.go > ztypes_windows.go && gofmt -w ztypes_windows.go
|
|
|
|
//go:build windows
|
|
// +build windows
|
|
|
|
// Package ewindows provides extra Windows-specific system utilities.
|
|
package ewindows
|
|
|
|
import "golang.org/x/sys/windows"
|
|
|
|
var kernel32 = windows.NewLazySystemDLL("kernel32.dll")
|