detver.h 720 B

12345678910111213141516171819202122232425262728
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Common version parameters.
  4. //
  5. // Microsoft Research Detours Package, Version 4.0.1
  6. //
  7. // Copyright (c) Microsoft Corporation. All rights reserved.
  8. //
  9. #define _USING_V110_SDK71_ 1
  10. #include "winver.h"
  11. #if 0
  12. #include <windows.h>
  13. #include <detours.h>
  14. #else
  15. #ifndef DETOURS_STRINGIFY
  16. #define DETOURS_STRINGIFY(x) DETOURS_STRINGIFY_(x)
  17. #define DETOURS_STRINGIFY_(x) #x
  18. #endif
  19. #define VER_FILEFLAGSMASK 0x3fL
  20. #define VER_FILEFLAGS 0x0L
  21. #define VER_FILEOS 0x00040004L
  22. #define VER_FILETYPE 0x00000002L
  23. #define VER_FILESUBTYPE 0x00000000L
  24. #endif
  25. #define VER_DETOURS_BITS DETOUR_STRINGIFY(DETOURS_BITS)