aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattn/go-runewidth/runewidth_windows.go
blob: 0258876b99dd024c5986b2c3de23ff20a3ad8db3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
}