1
0
mirror of https://github.com/beego/bee.git synced 2024-06-02 16:13:26 +00:00
bee/vendor/github.com/mattn/go-isatty/isatty_windows.go
2017-03-19 23:48:59 +01:00

20 lines
434 B
Go

// +build windows
// +build !appengine
package isatty
import (
"syscall"
"unsafe"
)
var kernel32 = syscall.NewLazyDLL("kernel32.dll")
var procGetConsoleMode = kernel32.NewProc("GetConsoleMode")
// IsTerminal return true if the file descriptor is terminal.
func IsTerminal(fd uintptr) bool {
var st uint32
r, _, e := syscall.Syscall(procGetConsoleMode.Addr(), 2, fd, uintptr(unsafe.Pointer(&st)), 0)
return r != 0 && e == 0
}