You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package dlg
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"github.com/xxjwxc/public/myi18n"
|
|
)
|
|
|
|
// WinMain windows main loop
|
|
func WinMain() {
|
|
if runtime.GOOS == "windows" {
|
|
myi18n.SetLocalLG("en")
|
|
}
|
|
OnInitDialog()
|
|
}
|