]> git.saurik.com Git - wxWidgets.git/blob - src/msw/version.rc
Applied patch [ 832096 ] Final separation for GUI and console for Open Watcom
[wxWidgets.git] / src / msw / version.rc
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/version.rc
3 // Purpose: contains version info resource for wxMSW DLL build
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 09.07.00
7 // RCS-ID: $Id$
8 // Copyright: (c) 2000 Vadim Zeitlin
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #include "wx/version.h"
13
14 // see http://msdn.microsoft.com/library/psdk/winui/rc_7x2d.htm for values: we
15 // don't use symbolic constants because older compilers might not have them
16 #ifdef WXMAKINGDLL
17 #define wxVFT 2 // VFT_DLL
18 #else
19 #define wxVFT 1 // VFT_APP
20 #endif
21
22 #ifdef _DEBUG
23 #define DLL_FLAGS 0x1L
24 #define DLL_SUFFIX "d"
25 #else
26 #define DLL_FLAGS 0x0L
27 #define DLL_SUFFIX ""
28 #endif
29
30 1 VERSIONINFO
31 FILEVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxBETA_NUMBER
32 PRODUCTVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxBETA_NUMBER
33 FILEFLAGSMASK 0x3fL
34 FILEFLAGS DLL_FLAGS
35 FILEOS 0x40004L // VOS_NT_WINDOWS32
36 FILETYPE wxVFT
37 FILESUBTYPE 0x0L
38 BEGIN
39 BLOCK "StringFileInfo"
40 BEGIN
41 // US English Ascii; see http://msdn.microsoft.com/library/psdk/winui/rc_3rxn.htm for codes
42 BLOCK "04090000"
43 BEGIN
44 VALUE "Comments", "wxWindows cross-platform GUI framework\0"
45 VALUE "CompanyName", "wxWindows development team\0"
46 VALUE "FileDescription", "wxWindows for MSW\0"
47 VALUE "FileVersion", "wxWindows Library " wxVERSION_NUM_DOT_STRING "\0"
48 VALUE "InternalName", "wxMSW\0"
49 VALUE "LegalCopyright", "Copyright © 1993-2002 wxWindows development team\0"
50 VALUE "LegalTrademarks", "\0"
51 VALUE "OriginalFilename", "wxmsw" wxVERSION_NUM_STRING DLL_SUFFIX ".dll\0"
52 VALUE "PrivateBuild", "\0"
53 VALUE "ProductName", "wxWindows\0"
54 VALUE "ProductVersion", wxVERSION_NUM_DOT_STRING "\0"
55 VALUE "SpecialBuild", "\0"
56 END
57 //US English Unicode; see http://msdn.microsoft.com/library/psdk/winui/rc_3rxn.htm for codes
58 BLOCK "040904b0"
59 BEGIN
60 VALUE "Comments", "wxWindows cross-platform GUI framework\0"
61 VALUE "CompanyName", "wxWindows development team\0"
62 VALUE "FileDescription", "wxWindows for MSW\0"
63 VALUE "FileVersion", "wxWindows Library " wxVERSION_NUM_DOT_STRING "\0"
64 VALUE "InternalName", "wxMSW\0"
65 VALUE "LegalCopyright", "Copyright © 1993-2002 wxWindows development team\0"
66 VALUE "LegalTrademarks", "\0"
67 VALUE "OriginalFilename", "wxmsw" wxVERSION_NUM_STRING DLL_SUFFIX ".dll\0"
68 VALUE "PrivateBuild", "\0"
69 VALUE "ProductName", "wxWindows\0"
70 VALUE "ProductVersion", wxVERSION_NUM_DOT_STRING "\0"
71 VALUE "SpecialBuild", "\0"
72 END
73 END
74 END