资源简介
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
- 上一篇:室内定位 WIFI Scan 源代码.rar
- 下一篇:FTP 客户端 C++ 实现
相关资源
- 全系统驱动变速帝王
- 基于opencv的肤色检测
- 边缘检测多尺度opencv
- 史上最快人脸检测系统超越OpenCV
- 检测图片中的简单几何图形,如三角
- 图像边缘检测7种算子代码
- 光流法运动检测代码C++,opencv
- 运动目标实时检测效果
- Windows读 USB口
- c++ windows服务开发样例
- Windows下的磁盘扇区查看工具
- c++ 车辆牌照检测
- MFC 获取windows系统日志
- popstar (消灭星星c++游戏
- C++/CLI Windows窗体应用程序
- 《Windows游戏编程大师技巧第二版》
- windows api 大全(比较全)
- OpenCV火焰检测识别
- Windows程序设计(第五版)【完整珍藏
- VS2008 windows应用程序C++
- c语言windows程序设计中文件版
- 在Windows中读取bios信息
- windows 程序设计第5版(附带光盘文件
- Windows界面编程第七篇 文件拖拽(文件
- ADC0804与51单片机的电压检测系统
- 基于单片机的气压检测装置的设计
- windows平台简单的http_client实现POST-GE
- C++ 一个用api封装的串口类
- 用com组件方式写windows串口通信接口
- 基于字符串模式匹配算法的病毒感染
评论
共有 条评论