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.

67 lines
1.9 KiB

  1. /* File: D:\WACKER\term\ver_exe.rc (Created: 5-May-1994)
  2. *
  3. * Copyright 1994 by Hilgraeve Inc. -- Monroe, MI
  4. * All rights reserved
  5. *
  6. * $Revision: 1.5 $
  7. * $Date: 1995/11/10 11:45:43 $
  8. */
  9. // This file is run through the C-preprocessor so that we can
  10. // automatically replace flags that depend on the build type for example.
  11. //
  12. #include <ntverp.h>
  13. VS_VERSION_INFO VERSIONINFO
  14. FILEVERSION VER_PRODUCTVERSION
  15. PRODUCTVERSION VER_PRODUCTVERSION
  16. FILEFLAGSMASK VS_FFI_FILEFLAGSMASK // 0x3fL
  17. #if defined(WIN_DEBUG)
  18. FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE // 0x3L
  19. #else
  20. FILEFLAGS VER_FILEFLAGS
  21. #endif
  22. FILEOS VER_FILEOS
  23. FILETYPE VFT_APP // 0x1L/0x2L : or VFT_DLL
  24. FILESUBTYPE VFT2_UNKNOWN // 0x0L : not used with DLLs, EXEs.
  25. {
  26. BLOCK "StringFileInfo"
  27. {
  28. // This block describes the language and the character set used.
  29. // For example in "04090000" 0409 represents the U.S. English and
  30. // 0000 represents 7-bit ASCII char set.
  31. //
  32. BLOCK "04090000"
  33. {
  34. VALUE "CompanyName", IDV_COMPANYNAME_STR
  35. VALUE "FileDescription", "HyperTerminal Applet\0"
  36. VALUE "FileVersion", VER_PRODUCTVERSION_STR
  37. VALUE "InternalName", "HyperTrm\0"
  38. VALUE "LegalCopyright", IDV_LEGALCOPYRIGHT_STR
  39. VALUE "LegalTrademarks", IDV_LEGALTRADEMARKS_STR
  40. VALUE "OriginalFilename", "HYPERTRM.EXE\0"
  41. VALUE "ProductName", VER_PRODUCTNAME_STR
  42. VALUE "ProductVersion", VER_PRODUCTVERSION_STR
  43. VALUE "Comments", IDV_COMMENTS_STR
  44. //
  45. // For special builds include this, also add VS_FF_SPECIALBUILD to
  46. // FILEFLAGS.
  47. //
  48. // VALUE "SpecialBuild", "Reason for special build\0"
  49. }
  50. }
  51. BLOCK "VarFileInfo"
  52. {
  53. VALUE "Translation", 0x0409, 0
  54. }
  55. }