ndyxb
//判断当前系统是否是32位 是32位返回TRUE 不是返回FALSE
BOOL CHideDlg::IsSystem32()
{
    SYSTEM_INFO si = { 0 };
    GetNativeSystemInfo(&si);
    if (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64 ||
        si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_IA64)
    {
        return FALSE;
    }
    else
    {
        return TRUE;
    }
}

 

分类:

技术点:

相关文章:

  • 2021-09-06
  • 2021-11-13
  • 2021-11-13
  • 2021-08-09
  • 2021-11-30
  • 2021-06-10
  • 2021-11-13
  • 2021-11-13
猜你喜欢
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
  • 2021-11-13
  • 2021-12-28
  • 2021-11-13
  • 2021-11-13
相关资源
相似解决方案