Leaked source code of windows server 2003
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.

24 lines
858 B

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #define VER_FILETYPE VFT_APP
  4. #define VER_FILESUBTYPE VFT2_UNKNOWN
  5. #define VER_FILEDESCRIPTION_STR "FIXMAPI 1.0 MAPI Repair Tool\0"
  6. #define VER_INTERNALNAME_STR "FIXMAPI"
  7. #define VER_ORIGINALFILENAME_STR "FIXMAPI.EXE"
  8. // Office 2k/Win2k both shipped version 5.5.2536.0. Make sure our's is higher and once
  9. // the OS catches up - use that version.
  10. #if VER_PRODUCTMAJORVERSION < 6
  11. #if VER_PRODUCTMINORVERSION < 6
  12. #if VER_PRODUCTBUILD < 2538
  13. #define VER_FILEVERSION 5,5,2537,VER_PRODUCTBUILD_QFE
  14. #else
  15. #define VER_FILEVERSION 5,5,VER_PRODUCTBUILD,VER_PRODUCTBUILD_QFE
  16. #endif
  17. #else
  18. #define VER_FILEVERSION 5,VER_PRODUCTMINORVERSION,VER_PRODUCTBUILD,VER_PRODUCTBUILD_QFE
  19. #endif
  20. #endif
  21. #include <common.ver>