iconv.rc 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* Resources for iconv.exe */
  2. #include <winver.h>
  3. VS_VERSION_INFO VERSIONINFO
  4. FILEVERSION PACKAGE_VERSION_MAJOR,PACKAGE_VERSION_MINOR,PACKAGE_VERSION_SUBMINOR,0
  5. PRODUCTVERSION PACKAGE_VERSION_MAJOR,PACKAGE_VERSION_MINOR,PACKAGE_VERSION_SUBMINOR,0
  6. FILEFLAGSMASK 0x3fL /* VS_FFI_FILEFLAGSMASK */
  7. #ifdef _DEBUG
  8. FILEFLAGS 0x1L /* VS_FF_DEBUG */
  9. #else
  10. FILEFLAGS 0x0L
  11. #endif
  12. FILEOS 0x10004L /* VOS_DOS_WINDOWS32 */
  13. FILETYPE 0x1L /* VFT_APP */
  14. FILESUBTYPE 0x0L /* VFT2_UNKNOWN */
  15. BEGIN
  16. BLOCK "StringFileInfo"
  17. BEGIN
  18. BLOCK "04090000" /* Lang = US English, Charset = ASCII */
  19. BEGIN
  20. VALUE "Comments", "This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.\0"
  21. VALUE "CompanyName", "Free Software Foundation\0"
  22. VALUE "FileDescription", "GPLed iconv for Windows NT/2000/XP/Vista\0"
  23. VALUE "FileVersion", PACKAGE_VERSION_STRING "\0"
  24. VALUE "InternalName", "iconv.exe\0"
  25. VALUE "LegalCopyright", "Copyright (C) 1999-2009\0"
  26. VALUE "LegalTrademarks", "\0"
  27. VALUE "OriginalFilename", "iconv.exe\0"
  28. VALUE "ProductName", "iconv: character set conversion program\0"
  29. VALUE "ProductVersion", PACKAGE_VERSION_STRING "\0"
  30. END
  31. END
  32. BLOCK "VarFileInfo"
  33. BEGIN
  34. VALUE "Translation", 0x0409, 0 /* US English, ASCII */
  35. END
  36. END