root/cafu/trunk/CaWE/CaWE.rc

Revision 150, 1.6 KB (checked in by Carsten, 21 months ago)

Even more 64-bit Windows build fixes.
These changes complete the port of Cafu to 64-bit Windows! :-D

Line 
1// *****************************************************************************
2// *** Reference documentation about .rc resource files can be found in      ***
3// *** the Microsoft Platform SDK docs...                                    ***
4// *** (I've been surprisingly UNsuccessful with Google or the MSDN search!) ***
5// *****************************************************************************
6
7#include "wx/msw/wx.rc"
8
9
10// ************************
11// *** Application Icon ***
12// ************************
13
14// Note that if the icon name "aaaa" is changed here, it must also be changed in C++ code!
15// This is because this icon is also used as the parent-frame icon.
16aaaa ICON "res\\CaWE-icon.ico"
17
18
19// ***************************
20// *** Version Information ***
21// ***************************
22
23VS_VERSION_INFO VERSIONINFO
24 FILEVERSION 1,0,0,0
25 PRODUCTVERSION 1,0,0,0
26 FILEFLAGSMASK 0x3fL
27#ifdef _DEBUG
28 FILEFLAGS 0x1L
29#else
30 FILEFLAGS 0x0L
31#endif
32 FILEOS 0x4L
33 FILETYPE 0x1L
34 FILESUBTYPE 0x0L
35BEGIN
36    BLOCK "StringFileInfo"
37    BEGIN
38        BLOCK "040904b0"
39        BEGIN
40            VALUE "CompanyName", "Carsten Fuchs Software"
41            VALUE "FileDescription", "CaWE - Cafu World Editor"
42            VALUE "FileVersion", "1.0.0.0"
43            VALUE "InternalName", "CaWE"
44            VALUE "LegalCopyright", "Copyright © 2002-2010 Carsten Fuchs Software"
45            VALUE "OriginalFilename", "CaWE.exe"
46            VALUE "ProductName", "CaWE - Cafu World Editor"
47            VALUE "ProductVersion", "1.0.0.0"
48        END
49    END
50    BLOCK "VarFileInfo"
51    BEGIN
52        VALUE "Translation", 0x409, 1200
53    END
54END
Note: See TracBrowser for help on using the browser.