• 大小: 8.36KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 标签: windows  window  检测  

资源简介

c++ 检测windows机型

资源截图

代码片段和文件信息

//// MyReadNumber_C.cpp : 此文件包含 “main“ 函数。程序执行将在此处开始并结束。


#include  
#include 
#include 
#include  // include must before window.h
#include 
#include   
#include 

#pragma comment(lib “iphlpapi.lib“)

//警告
#pragma warning(disable: 4996) // avoid GetVersionEx to be warned

// ***** global macros ***** //
static const int kMaxInfoBuffer = 256;  //信息缓冲区大小
#define  GBYTES  1073741824  
#define  MBYTES  1048576  
#define  KBYTES  1024  
#define  DKBYTES 1024.0  

//****** 获取操作系统信息 ******//
void getOsInfo()
{
// get os name according to version number
OSVERSIONINFO osver = { sizeof(OSVERSIONINFO) };
GetVersionEx(&osver);
std::string os_name;
if (osver.dwMajorVersion == 5 && osver.dwMino

评论

共有 条评论