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.

47 lines
1.4 KiB

  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. // Names of DLLs. Used by the VERSIONNAME entry in the RC file of each DLL.
  14. #define DLLFILE_ITCC "ITCC.DLL\0"
  15. #define DLLFILE_ITSS "ITSS.DLL\0"
  16. #define DLLFILE_ITIRCL "ITIRCL.DLL\0"
  17. // InfoTech version number: major, minor, update, application.
  18. #define rmj 4
  19. #define rmm 72
  20. #define rup 7276
  21. #define rap 0
  22. #define szVerName ""
  23. #define szVerUser ""
  24. // InfoTech *file* version number: major, minor, application. These
  25. // may not get updated as often as their executable counterparts above.
  26. // This version number is used to stamp some areas of ITIRCL's persistent
  27. // storage.
  28. #define rmjFile 4
  29. #define rmmFile 0
  30. #define rapFile 0
  31. // NT build environment defines DBG instead of _DEBUG
  32. #if defined(DBG) && !defined(_DEBUG)
  33. #define _DEBUG
  34. #endif
  35. #ifdef _DEBUG
  36. #define VERSIONSTR "Debug Version 4.72\0"
  37. #define VERSIONFLAGS VS_FF_DEBUG
  38. #else
  39. #define VERSIONSTR "4.72\0"
  40. #define VERSIONFLAGS 0
  41. #endif