Files
VRCWT-OSC/internal/app/codepage_nonwindows.go
messypy b25e002092
Some checks failed
build-windows-exe / build (push) Failing after 1m43s
Make log decoding build on non-Windows CI
2026-07-27 23:13:30 +09:00

8 lines
100 B
Go

//go:build !windows
package app
func decodeWithCodePage(_ []byte, _ uint32) string {
return ""
}