wxwidgets 获取系统信息

来源:互联网 发布:硬盘数据彻底删除软件 编辑:程序博客网 时间:2024/06/05 18:09
wxLogMessage("%s.",wxPlatformInfo::Get().GetOperatingSystemDescription());//systemwxLogMessage("Major = %d, Minor = %d",wxPlatformInfo::Get().GetOSMajorVersion(),//get majorwxPlatformInfo::Get().GetOSMinorVersion() //get minor);wxLogMessage("arch = %d.",wxPlatformInfo::Get().GetArchitecture());//bitwxString OsVersion = ::wxGetOsDescription();wxMessageBox(OsVersion, _("axi Test"));//system

0 0