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.

53 lines
1.7 KiB

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: buildnum.h
  4. // Copyright (C) 1994-1996 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Build number file. This converts the SLM build numbers in PRODVER.H
  8. // to something a little more useful.
  9. //
  10. // This is mostly used by version stamp resoruces. If you want the build
  11. // numbers, you should PROBABLY use the ones exported in PBASE (if you are
  12. // a parser), or function GetVersionInfo() in ESPUTIL.
  13. //
  14. //-----------------------------------------------------------------------------
  15. #pragma once
  16. #include "prodver\prodver.h"
  17. #define stringize2(x) #x
  18. #define stringize(x) stringize2(x)
  19. #define frmj rmj
  20. #define frmm rmm
  21. #define frup rup
  22. #define prmj rmj
  23. #define prmm rmm
  24. #define prup rup
  25. #define RELEASE
  26. #if defined(_DEBUG)
  27. #define ProdVerString stringize(prmj.prmm.prup (Debug) RELEASE\0)
  28. #define FileVerString stringize(frmj.frmm.frup (Debug) RELEASE\0)
  29. #else
  30. #define ProdVerString stringize(prmj.prmm.prup RELEASE\0)
  31. #define FileVerString stringize(frmj.frmm.frup RELEASE\0)
  32. #endif
  33. //
  34. // Common version information
  35. //
  36. #define CompanyNameString "Microsoft Corporation\0"
  37. #define CopyrightString "Copyright \251 1994-1998 Microsoft Corp.\0"
  38. // copyright for command line tools
  39. #define CopyrightStringCMD "Copyright (C) 1994-1998 Microsoft Corp. All rights reserved.\0"
  40. #define ProductNameString "Microsoft Localization Studio\0"
  41. #define TrademarkString \
  42. "Microsoft� is a registered trademark of Microsoft Corporation. \
  43. Windows(TM) is a trademark of Microsoft Corporation.\0"
  44. #define TIMESTAMP stringize(__TIME__\0)
  45. #define DATESTAMP stringize(__DATE__\0)