c++怎么调用api函数?

例如我想编写一个C++程序通过调用API函数来获取计算机硬件的信息代码要怎么写啊??... 例如我想编写一个C++程序通过调用API函数来获取计算机硬件的信息代码要怎么写啊?? 展开
 我来答
匿名用户
2013-10-14
展开全部
#include <iostream>
#include <windows.h>

using namespace std;

void GetProcessorInfo();
void GetMemInfo();

int main(int argc, char* argv[])
{

GetProcessorInfo();
GetMemInfo();
GetDeviceInfo();

return 0;
}

void GetProcessorInfo()
{
SYSTEM_INFO sysInfo;
string processorType;

GetSystemInfo (&sysInfo);

if (sysInfo.dwProcessorType == PROCESSOR_INTEL_386)
{
processorType = "Intel 386";
}
else if (sysInfo.dwProcessorType == PROCESSOR_INTEL_486)
{
processorType = "Intel 486";
}
else if (sysInfo.dwProcessorType == PROCESSOR_INTEL_PENTIUM)
{
processorType = "Intel Pentium";
}
else if (sysInfo.dwProcessorType == PROCESSOR_MIPS_R4000)
{
processorType = "MIPS";
}
else if (sysInfo.dwProcessorType == PROCESSOR_ALPHA_21064)
{
processorType = "Alpha";
}
else {
processorType = "Unknown";
}

cout << processorType << " " << sysInfo.dwNumberOfProcessors << "核" << endl;
}

void GetMemInfo()
{
MEMORYSTATUS status;

GlobalMemoryStatus(&status);

cout << "内存使用率:" << status.dwMemoryLoad << "%" << endl;
cout << "总物理内存大小:" << status.dwTotalPhys / (1024*1024) << "M" << endl;
cout << "可用物理内存大小:" << status.dwAvailPhys / (1024*1024) << "M" << endl;
}
匿名用户
2013-10-14
展开全部
所谓API就是MFC中的一些函数,按照函数声明直接调用。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式