1
0
Fork 0
mirror of https://github.com/Luzifer/share.git synced 2024-10-18 13:24:23 +00:00
share/vendor/github.com/mattn/go-runewidth/runewidth_windows.go
Knut Ahlers 8af31b8e6b
Add progress output to CLI upload
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-10-11 20:15:12 +02:00

25 lines
416 B
Go

package runewidth
import (
"syscall"
)
var (
kernel32 = syscall.NewLazyDLL("kernel32")
procGetConsoleOutputCP = kernel32.NewProc("GetConsoleOutputCP")
)
// IsEastAsian return true if the current locale is CJK
func IsEastAsian() bool {
r1, _, _ := procGetConsoleOutputCP.Call()
if r1 == 0 {
return false
}
switch int(r1) {
case 932, 51932, 936, 949, 950:
return true
}
return false
}