gpt4 book ai didi

c++ - 在运行时检查 Windows 是否为 64 位的正确方法? (C++)

转载 作者:可可西里 更新时间:2023-11-01 18:04:16 25 4
gpt4 key购买 nike

bool Win64bit = (sizeof(int*) == 8) ? 1 : 0;

我需要它以便我的应用程序可以正确使用 Windows 注册表功能(或者我需要吗?)。

那么我做对了吗?

最佳答案

这是 Raymond Chen 在其博客 https://devblogs.microsoft.com/oldnewthing/20050201-00/?p=36553 中的建议。 :

BOOL Is64BitWindows()
{
#if defined(_WIN64)
return TRUE; // 64-bit programs run only on Win64
#elif defined(_WIN32)
// 32-bit programs run on both 32-bit and 64-bit Windows
// so must sniff
BOOL f64 = FALSE;
return IsWow64Process(GetCurrentProcess(), &f64) && f64;
#else
return FALSE; // Win64 does not support Win16
#endif
}

关于c++ - 在运行时检查 Windows 是否为 64 位的正确方法? (C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2140619/

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