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.

63 lines
1.8 KiB

  1. #include <winver.h>
  2. #include "iisver.h"
  3. /*------------------------------------------------------------------------------*/
  4. /* the following section defines values used in the version */
  5. /* data structure for all files, and which do not change. */
  6. /*------------------------------------------------------------------------------*/
  7. /* default is nodebug */
  8. #ifndef DEBUG
  9. #define VER_DEBUG 0
  10. #else
  11. #define VER_DEBUG VS_FF_DEBUG
  12. #endif
  13. /* default is privatebuild */
  14. #ifndef OFFICIAL
  15. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  16. #else
  17. #define VER_PRIVATEBUILD 0
  18. #endif
  19. /* default is prerelease */
  20. #ifndef FINAL
  21. #define VER_PRERELEASE VS_FF_PRERELEASE
  22. #else
  23. #define VER_PRERELEASE 0
  24. #endif
  25. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  26. #define VER_FILEOS VOS_DOS_WINDOWS32
  27. #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  28. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  29. #ifndef DLL_VER
  30. #undef VER_PRODUCTNAME_STR
  31. #define VER_PRODUCTNAME_STR "Microsoft\256 Windows(TM) Operating System\0"
  32. #endif //DLL_VER
  33. #define VER_LEGALTRADEMARKS_STR \
  34. "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"
  35. #define VER_FILETYPE VFT_DLL
  36. #define VER_FILESUBTYPE 0
  37. #define VER_LEGALCOPYRIGHT_YEARS "1996"
  38. #ifndef DLL_VER
  39. #undef VER_PRODUCTNAME_STR
  40. #define VER_PRODUCTNAME_STR "Active Server Pages"
  41. #undef VER_FILEDESCRIPTION_STR
  42. #define VER_FILEDESCRIPTION_STR "Active Server Pages Performance Counters"
  43. #undef VER_INTERNALNAME_STR
  44. #define VER_INTERNALNAME_STR "Active Server Pages"
  45. #undef VER_ORIGINALFILENAME_STR
  46. #define VER_ORIGINALFILENAME_STR "ASPPERF.DLL"
  47. #endif //DLL_VER
  48. #include "common.ver"