728x90
SMALL
반응형
SYSTEM_INFO SysInfo;
int nProcessors = 0;
// Get the number of processors in the system.
ZeroMemory (&SysInfo, sizeof (SYSTEM_INFO));
GetSystemInfo (&SysInfo);
// Number of physical processors in a non-Intel system
// or in a 32-bit Intel system with Hyper-Threading technology disabled
nProcessors = SysInfo.dwNumberOfProcessors;
출처: https://use1348.tistory.com/28 [유용한 정보:티스토리]
'유용한 정보' 카테고리의 다른 글
[VC++]폴더 선택 다이얼로그 (0) | 2024.12.26 |
---|---|
[VC++]CFileDialog 의 크기를 사용자가 조절할 수 있게 수정 (0) | 2024.12.26 |
[기타] Dll 내의 함수 보기 (0) | 2024.12.26 |
XP 버전의 ActiveX를 Vista 이상버전으로 권한상승시키는 방법... (0) | 2024.12.26 |
[VC++]CWinThread 시작 및 종료 (0) | 2024.12.26 |