发新帖

[C/VC/C++] 判断系统64位,32位方法

零下一度 2019-9-11 1012
BOOL IsWow64()
{
	BOOL bIsWow64 = FALSE;
	//IsWow64Process is not available on all supported versions of Windows.    
	//Use GetModuleHandle to get a handle to the DLL that contains the function    
	//and GetProcAddress to get a pointer to the function if available.    
	fnIsWow64Process = (LPFN_ISWOW64PROCESS)GetProcAddress(
		GetModuleHandle(TEXT("kernel32")), "IsWow64Process");
	if (NULL != fnIsWow64Process)
	{
		if (!fnIsWow64Process(GetCurrentProcess(), &bIsWow64))
		{
			//handle error    
		}
	}
	return bIsWow64;
}


最新回复 (0)
返回
零下一度
主题数
928
帖子数
0
注册排名
1