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.

34 lines
884 B

  1. /*****************************************************************************
  2. *
  3. * VERINFO.H
  4. *
  5. * Copyright (C) Microsoft Corporation 1996-1997
  6. * All Rights reserved.
  7. *
  8. ******************************************************************************
  9. *
  10. * Module Intent: Version specific constant definitions
  11. *
  12. *****************************************************************************/
  13. // InfoTech version number: major, minor, update, application.
  14. #define rmj 4
  15. #define rmm 72
  16. #define rup 8084
  17. #define rap 0
  18. #define szVerName ""
  19. #define szVerUser ""
  20. // NT build environment defines DBG instead of _DEBUG
  21. #ifdef DBG
  22. #define _DEBUG
  23. #endif
  24. #ifdef _DEBUG
  25. #define VERSIONSTR "Debug Version 4.72\0"
  26. #define VERSIONFLAGS VS_FF_DEBUG
  27. #else
  28. #define VERSIONSTR "4.72\0"
  29. #define VERSIONFLAGS 0
  30. #endif