ユーザーのシステムが Win 7-32 か Win7-64 かを、実行時に Qt を使用してどのように検出できますか?
質問する
996 次
2 に答える
2
私の知る限り、Qtだけを使用してそれを行う方法はありません。以下は、その方法です。
#include <windows.h>
#include <tchar.h>
#include <QtCore/QSysInfo>
typedef enum { Win_64, Win_32, Error, Other } OsType;
typedef BOOL (WINAPI *LPFN_ISWOW64PROCESS) (HANDLE, PBOOL);
OsType checkOS() {
#ifndef Q_OS_WIN32
return Other;
#else
// An application compiled for 64 bits can only run on a 64 bit os,
// so no need to check any further.
if (QSysInfo::WordSize == 64) return Win7_64;
// A 32 bit application may be running on a 64 bit OS.
BOOL is64 = FALSE;
// IsWow64Process may not be available in kernel32 on all Windows versions, so we bind to it
// at runtime.
LPFN_ISWOW64PROCESS fnIsWow64Process;
fnIsWow64Process = (LPFN_ISWOW64PROCESS)
GetProcAddress(GetModuleHandle(TEXT("kernel32")),"IsWow64Process");
// No way it's a 64 bit OS if it doesn't have this API.
if (fnIsWow64Process == NULL) return Win_32;
// Note that GetCurrentProcess() can't fail.
if (!IsWow64Process(GetCurrentProcess(), &is64)) return Error; // The check has failed.
return is64 ? Win_64 : Win_32;
#endif
}
于 2012-06-15T14:28:52.773 に答える
0
Qt 5 の場合、およびのようなQSysInfo静的関数を使用できます。prettyProductName()
currentCpuArchitecture()
于 2018-09-24T12:55:55.740 に答える