NCTools.h 819 B

12345678910111213141516171819202122232425262728293031
  1. // NCTools.h : include file for standard system include files
  2. //
  3. #pragma once
  4. #include <WinSDKVer.h>
  5. // // Including SDKDDKVer.h defines the highest available Windows platform.
  6. // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
  7. // set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.
  8. #include <SDKDDKVer.h>
  9. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  10. // Windows Header Files
  11. #include <windows.h>
  12. #include <shellapi.h>
  13. #include <Shlobj.h>
  14. #include <psapi.h>
  15. #include <wincred.h>
  16. // C RunTime Header Files
  17. #include <cstdlib>
  18. #include <malloc.h>
  19. #include <memory.h>
  20. #include <tchar.h>
  21. #include <algorithm>
  22. #include <functional>
  23. #include <string>
  24. #include <vector>
  25. #include <variant>