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;
'기본카테고리' 카테고리의 다른 글
XP 버전의 ActiveX를 Vista 이상버전으로 권한상승시키는 방법(2010.02.16) (0) | 2010.10.08 |
---|---|
Dll 내의 함수 보기 (0) | 2010.10.08 |
[VC++]CFileDialog 의 크기를 사용자가 조절할 수 있게 수정 (0) | 2010.10.08 |
[VC++]폴더 선택 다이얼로그 (0) | 2010.10.08 |
윈도우 서비스 등록/시작/정지 (0) | 2010.10.08 |