运行时是否正确检查Windows是否为64位? (C )

前端之家收集整理的这篇文章主要介绍了运行时是否正确检查Windows是否为64位? (C )前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
bool Win64bit = (sizeof(int*) == 8) ? 1 : 0;

我需要这个,所以我的应用程序可以正常使用Windows注册功能(或者我需要?).

我做得对吗?

以下是Raymond Chen在 http://blogs.msdn.com/oldnewthing/archive/2005/02/01/364563.aspx博客中建议的内容
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
}
原文链接:https://www.f2er.com/windows/364958.html

猜你在找的Windows相关文章