expandedresources.h 500 B

1234567891011121314151617181920
  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 __EXPANDEDRESOURCES_H__
  6. #define __EXPANDEDRESOURCES_H__
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. HRESULT WINAPI GetExpandedResourceExclusiveCpuCount(ULONG *exclusiveCpuCount);
  11. HRESULT WINAPI HasExpandedResources(BOOL *hasExpandedResources);
  12. HRESULT WINAPI ReleaseExclusiveCpuSets(VOID);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* __EXPANDEDRESOURCES_H__ */