]> git.saurik.com Git - wxWidgets.git/blob - src/msw/version.rc
use wxSTRINGIZE instead of redefining a special STRINGIZE in this file
[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: wxWidgets 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 #else
25 #define DLL_FLAGS 0x0L
26 #endif
27
28 #ifdef _UNICODE
29 #define LANG "04090000"
30 #else
31 #define LANG "040904b0"
32 #endif
33
34 1 VERSIONINFO
35 FILEVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxSUBRELEASE_NUMBER
36 PRODUCTVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxSUBRELEASE_NUMBER
37 FILEFLAGSMASK 0x3fL
38 FILEFLAGS DLL_FLAGS
39 FILEOS 0x40004L // VOS_NT_WINDOWS32
40 FILETYPE wxVFT
41 FILESUBTYPE 0x0L
42 BEGIN
43 BLOCK "StringFileInfo"
44 BEGIN
45 // US English Ascii; see http://msdn.microsoft.com/library/psdk/winui/rc_3rxn.htm for codes
46 BLOCK LANG
47 BEGIN
48 VALUE "Comments", "wxWidgets cross-platform GUI framework\0"
49 VALUE "CompanyName", "wxWidgets development team\0"
50 VALUE "FileDescription", "wxWidgets for MSW\0"
51 VALUE "FileVersion", "wxWidgets Library " wxVERSION_NUM_DOT_STRING "\0"
52 VALUE "InternalName", "wxMSW\0"
53 VALUE "LegalCopyright", "Copyright © 1993-2006 wxWidgets development team\0"
54 VALUE "LegalTrademarks", "\0"
55 VALUE "OriginalFilename", wxSTRINGIZE(WXDLLNAME) ".dll\0"
56 VALUE "PrivateBuild", "\0"
57 VALUE "ProductName", "wxWidgets\0"
58 VALUE "ProductVersion", wxVERSION_NUM_DOT_STRING "\0"
59 VALUE "SpecialBuild", "\0"
60 END
61 END
62 END