Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1012 B

  1. #include "windows.h"
  2. #define VER_FILEDESCRIPTION_STR "LKRhash scalable hashtables"
  3. #define VER_INTERNALNAME_STR "LKRhash.sys"
  4. #define VER_ORIGINALFILENAME_STR "LKRhash.sys"
  5. #define VER_FILETYPE VFT_DLL
  6. #define VER_FILESUBTYPE VFT2_UNKNOWN
  7. #define VER_PRODUCTVERSION_STR "1.8"
  8. #define VER_PRODUCTVERSION 1,08,01,001
  9. #define VER_COMPANYNAME_STR "Microsoft Corporation"
  10. #define VER_PRODUCTNAME_STR "Microsoft(R) Windows (R) 2000 Operating System"
  11. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  12. #define VER_FILEOS VOS_NT_WINDOWS32
  13. #define VER_PRERELEASE 0
  14. #if DBG
  15. #define VER_DEBUG VS_FF_DEBUG
  16. #else
  17. #define VER_DEBUG 0
  18. #endif
  19. #define VER_PRIVATE 0
  20. // #define VER_PRIVATE VS_FF_PRIVATEBUILD
  21. #define VER_FILEFLAGS (VER_PRERELEASE|VER_DEBUG|VER_PRIVATE)
  22. #include "common.ver"