1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/version.rc
3 // Purpose: contains version info resource for wxMSW DLL build
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 Vadim Zeitlin
9 // Licence: wxWidgets license
10 ///////////////////////////////////////////////////////////////////////////////
12 #include "wx/version.h"
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
17 #define wxVFT 2 // VFT_DLL
19 #define wxVFT 1 // VFT_APP
23 #define DLL_FLAGS 0x1L
25 #define DLL_FLAGS 0x0L
28 // 0x0409 is US English, 0x04b0 is Unicode and 0x0000 is 7 bit ASCII. see
29 // http://msdn.microsoft.com/en-us/library/aa381049(VS.85).aspx for the full
30 // list of languages and charsets
33 #define CHARSET "04b0"
35 #define CHARSET "0000"
39 FILEVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxSUBRELEASE_NUMBER
40 PRODUCTVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxSUBRELEASE_NUMBER
43 FILEOS 0x40004L // VOS_NT_WINDOWS32
47 BLOCK "StringFileInfo"
51 VALUE "Comments", "wxWidgets cross-platform GUI framework\0"
52 VALUE "CompanyName", "wxWidgets development team\0"
53 VALUE "FileDescription", "wxWidgets for MSW\0"
54 VALUE "FileVersion", "wxWidgets Library " wxVERSION_NUM_DOT_STRING "\0"
55 VALUE "InternalName", "wxMSW\0"
56 VALUE "LegalCopyright", "Copyright © 1993-2007 wxWidgets development team\0"
57 VALUE "LegalTrademarks", "\0"
58 VALUE "OriginalFilename", wxSTRINGIZE(WXDLLNAME) ".dll\0"
59 VALUE "PrivateBuild", "\0"
60 VALUE "ProductName", "wxWidgets\0"
61 VALUE "ProductVersion", wxVERSION_NUM_DOT_STRING "\0"
62 VALUE "SpecialBuild", "\0"
67 VALUE "Translation", LANG, CHARSET