From 29c72fb30bb7d5614c0a8ebb73bee2ac7eca6608 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Sun, 6 Mar 2022 17:40:35 +0100 Subject: Removed go-dashboard example. Signed-off-by: Toni Uhlig --- .../mattn/go-runewidth/runewidth_windows.go | 28 ---------------------- 1 file changed, 28 deletions(-) delete mode 100644 examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_windows.go (limited to 'examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_windows.go') diff --git a/examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_windows.go b/examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_windows.go deleted file mode 100644 index d6a61777d..000000000 --- a/examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_windows.go +++ /dev/null @@ -1,28 +0,0 @@ -// +build windows -// +build !appengine - -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 -} -- cgit v1.2.3