modified: n.fq
[GalaxyCodeBases.git] / tools / vbindiff / win32 / vbindiff.rc
blob34d7b551ea04cd0d89c8843f7579618f70a26ecd
1 //--------------------------------------------------------------------
2 //
3 //   Visual Binary Diff
4 //   Copyright 2008 by Christopher J. Madsen
5 //
6 //   Resource script for vbindiff.exe
7 //
8 //   This program is free software; you can redistribute it and/or
9 //   modify it under the terms of the GNU General Public License as
10 //   published by the Free Software Foundation; either version 2 of
11 //   the License, or (at your option) any later version.
13 //   This program is distributed in the hope that it will be useful,
14 //   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 //   GNU General Public License for more details.
18 //   You should have received a copy of the GNU General Public License
19 //   along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 //--------------------------------------------------------------------
22 #include <winres.h>
24 #include "version.h"
26 /////////////////////////////////////////////////////////////////////////////
27 // English (U.S.) resources
29 #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
30 #ifdef _WIN32
31 LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
32 #pragma code_page(1252)
33 #endif //_WIN32
35 /////////////////////////////////////////////////////////////////////////////
37 // Version
40 VS_VERSION_INFO VERSIONINFO
41  FILEVERSION PACKAGE_VERSION_NUM
42  PRODUCTVERSION PACKAGE_VERSION_NUM
43  FILEFLAGSMASK 0x3fL
44 #ifdef _DEBUG
45  FILEFLAGS 0x1L
46 #else
47  FILEFLAGS 0x0L
48 #endif
49  FILEOS 0x40004L
50  FILETYPE 0x1L
51  FILESUBTYPE 0x0L
52 BEGIN
53     BLOCK "StringFileInfo"
54     BEGIN
55         BLOCK "040904b0"
56         BEGIN
57             VALUE "CompanyName", "Christopher J. Madsen\0"
58             VALUE "FileDescription", "Visual Binary Diff\0"
59             VALUE "FileVersion", PACKAGE_VERSION "\0"
60             VALUE "InternalName", "VBinDiff\0"
61             VALUE "LegalCopyright", "Copyright 2008 Christopher J. Madsen\0"
62             VALUE "OriginalFilename", "VBinDiff.exe\0"
63             VALUE "ProductName", "Visual Binary Diff\0"
64             VALUE "ProductVersion", PACKAGE_VERSION "\0"
65         END
66     END
67     BLOCK "VarFileInfo"
68     BEGIN
69         VALUE "Translation", 0x409, 1200
70     END
71 END
73 #endif    // English (U.S.) resources
74 /////////////////////////////////////////////////////////////////////////////
75 // Local Variables:
76 // cjm-related-file: "../vbindiff.cpp"
77 // fill-column: 77
78 // End: