systemtopologyapi.h 641 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * This file is part of the mingw-w64 runtime package.
  3. * No warranty is given; refer to the file DISCLAIMER within this package.
  4. */
  5. #ifndef _SYSTEMTOPOLOGY_H_
  6. #define _SYSTEMTOPOLOGY_H_
  7. #include <apiset.h>
  8. #include <apisetcconv.h>
  9. #include <minwindef.h>
  10. #include <minwinbase.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP)
  15. WINBASEAPI WINBOOL WINAPI GetNumaHighestNodeNumber (PULONG HighestNodeNumber);
  16. #if _WIN32_WINNT >= 0x0601
  17. WINBASEAPI WINBOOL WINAPI GetNumaNodeProcessorMaskEx (USHORT Node, PGROUP_AFFINITY ProcessorMask);
  18. #endif
  19. #endif
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif