bmk_cores_win32.c 157 B

12345678
  1. #include "windows.h"
  2. int bmx_GetSystemInfo_dwNumberOfProcessors() {
  3. SYSTEM_INFO info;
  4. GetSystemInfo(&info);
  5. return info.dwNumberOfProcessors;
  6. }