79 Star 313 Fork 52

不在乎y/govcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.go 610 Bytes
一键复制 编辑 原始数据 按行查看 历史
不在乎y 提交于 2020-03-06 14:37 . Change expansion package path
package main
import (
"fmt"
_ "github.com/ying32/govcl/pkgs/winappres"
. "github.com/ying32/govcl/vcl/rtl/version"
)
func main() {
fmt.Println("Major: ", OSVersion.Major)
fmt.Println("Minor: ", OSVersion.Minor)
fmt.Println("Name: ", OSVersion.Name)
fmt.Println("String: ", OSVersion.ToString())
switch OSVersion.Platform {
case PfWindows:
if OSVersion.CheckMajor(10) {
fmt.Println("当前为Windows10")
} else {
fmt.Println("当前不是Windows10")
}
case PfLinux:
fmt.Println("LIBC Version:", OSVersion.LibCVersionMajor, ", ", OSVersion.LibCVersionMinor)
case PfMacOS:
//
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ying32/govcl.git
git@gitee.com:ying32/govcl.git
ying32
govcl
govcl
v2.0.1

搜索帮助