MCPcopy
hub / github.com/sirupsen/logrus / checkIfTerminal

Function checkIfTerminal

terminal_check_windows.go:12–27  ·  view source on GitHub ↗
(w io.Writer)

Source from the content-addressed store, hash-verified

10)
11
12func checkIfTerminal(w io.Writer) bool {
13 switch v := w.(type) {
14 case *os.File:
15 handle := windows.Handle(v.Fd())
16 var mode uint32
17 if err := windows.GetConsoleMode(handle, &mode); err != nil {
18 return false
19 }
20 mode |= windows.ENABLE_VIRTUAL_TERMINAL_PROCESSING
21 if err := windows.SetConsoleMode(handle, mode); err != nil {
22 return false
23 }
24 return true
25 }
26 return false
27}

Callers 1

initMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected