gpt4 book ai didi

c - 我如何知道我是否使用 Windows API 来使用 ARM?

转载 作者:行者123 更新时间:2023-11-30 18:49:25 27 4
gpt4 key购买 nike

如何检查我的程序运行的系统是否基于arm或不使用c/c++?

最佳答案

这就是您要找的内容,

#include <stdio.h>
#include <windows.h>

int main(void)
{

SYSTEM_INFO SystemInfo;
GetSystemInfo(&SystemInfo);

if(SystemInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_ARM)
{
// System's processor is ARM based
}

return 0;
}

编辑:按照 Anders 的建议,使用 GetNativeSystemInfo 以获得更好、更准确的结果。

关于c - 我如何知道我是否使用 Windows API 来使用 ARM?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42843149/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com