Annotation of embedaddon/libiconv/windows/iconv.rc, revision 1.1.1.1
1.1 misho 1: /* Resources for iconv.exe */
2:
3: #include <winver.h>
4:
5: VS_VERSION_INFO VERSIONINFO
6: FILEVERSION PACKAGE_VERSION_MAJOR,PACKAGE_VERSION_MINOR,PACKAGE_VERSION_SUBMINOR,0
7: PRODUCTVERSION PACKAGE_VERSION_MAJOR,PACKAGE_VERSION_MINOR,PACKAGE_VERSION_SUBMINOR,0
8: FILEFLAGSMASK 0x3fL /* VS_FFI_FILEFLAGSMASK */
9: #ifdef _DEBUG
10: FILEFLAGS 0x1L /* VS_FF_DEBUG */
11: #else
12: FILEFLAGS 0x0L
13: #endif
14: FILEOS 0x10004L /* VOS_DOS_WINDOWS32 */
15: FILETYPE 0x1L /* VFT_APP */
16: FILESUBTYPE 0x0L /* VFT2_UNKNOWN */
17: BEGIN
18: BLOCK "StringFileInfo"
19: BEGIN
20: BLOCK "04090000" /* Lang = US English, Charset = ASCII */
21: BEGIN
22: 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"
23: VALUE "CompanyName", "Free Software Foundation\0"
24: VALUE "FileDescription", "GPLed iconv for Windows NT/2000/XP/Vista\0"
25: VALUE "FileVersion", PACKAGE_VERSION_STRING "\0"
26: VALUE "InternalName", "iconv.exe\0"
27: VALUE "LegalCopyright", "Copyright (C) 1999-2009\0"
28: VALUE "LegalTrademarks", "\0"
29: VALUE "OriginalFilename", "iconv.exe\0"
30: VALUE "ProductName", "iconv: character set conversion program\0"
31: VALUE "ProductVersion", PACKAGE_VERSION_STRING "\0"
32: END
33: END
34: BLOCK "VarFileInfo"
35: BEGIN
36: VALUE "Translation", 0x0409, 0 /* US English, ASCII */
37: END
38: END
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>