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.

63 lines
2.0 KiB

  1. /* File: D:\WACKER\term\ver_dll.rc (Created: 5-May-1994)
  2. *
  3. * Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
  4. * All rights reserved
  5. *
  6. * $Revision: 5 $
  7. * $Date: 3/07/01 10:06a $
  8. */
  9. #include "version.h"
  10. // This file is run through the C-preprocessor so that we can
  11. // automatically replace flags that depend on the build type for example.
  12. //
  13. VS_VERSION_INFO VERSIONINFO
  14. FILEVERSION IDV_FILEVER // Version of this file
  15. PRODUCTVERSION IDV_PRODUCTVER // Distributed with Windows 4.0
  16. FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  17. //
  18. // NOTE: the VS_FF_PRERELEASE has to be taken out once we go to
  19. // production!!!
  20. //
  21. #if defined(WIN_DEBUG)
  22. FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
  23. #else
  24. FILEFLAGS 0L | VS_FF_PRERELEASE
  25. #endif
  26. FILEOS VOS__WINDOWS32 // for 32-bit Windows
  27. FILETYPE VFT_DLL // or VFT_APP
  28. FILESUBTYPE VFT2_UNKNOWN // not used with DLLs, EXEs.
  29. {
  30. BLOCK "StringFileInfo"
  31. {
  32. // This block describes the language and the character set used.
  33. // For example in "04090000" 0409 represents the U.S. English and
  34. // 0000 represents 7-bit ASCII char set.
  35. //
  36. BLOCK "04090000"
  37. {
  38. VALUE "CompanyName", IDV_COMPANYNAME_STR
  39. VALUE "FileDescription", "HyperTerminal Applet Library\0"
  40. VALUE "FileVersion", IDV_FILEVERSION_STR
  41. VALUE "InternalName", "HyperTrm\0"
  42. VALUE "LegalCopyright", IDV_LEGALCOPYRIGHT_STR
  43. VALUE "LegalTrademarks", IDV_LEGALTRADEMARKS_STR
  44. VALUE "OriginalFilename", "HyperTrm.dll\0"
  45. VALUE "ProductName", IDV_PRODUCTNAME_STR
  46. VALUE "ProductVersion", IDV_PRODUCTVERSION_STR
  47. VALUE "Comments", IDV_COMMENTS_STR
  48. //
  49. // For special builds include this, also add VS_FF_SPECIALBUILD to
  50. // FILEFLAGS.
  51. //
  52. // VALUE "SpecialBuild", "Reason for special build\0"
  53. }
  54. }
  55. BLOCK "VarFileInfo"
  56. {
  57. VALUE "Translation", 0x0409, 0
  58. }
  59. }