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: wxWindows licence
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
34 #define LANG_WITH_CHARSET "040904b0"
37 #define LANG_WITH_CHARSET "04090000"
41 FILEVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxSUBRELEASE_NUMBER
42 PRODUCTVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxSUBRELEASE_NUMBER
45 FILEOS 0x40004L // VOS_NT_WINDOWS32
49 BLOCK "StringFileInfo"
51 BLOCK LANG_WITH_CHARSET
53 VALUE "Comments", "wxWidgets cross-platform GUI framework\0"
54 VALUE "CompanyName", "wxWidgets development team\0"
55 VALUE "FileDescription", "wxWidgets for MSW\0"
56 VALUE "FileVersion", "wxWidgets Library " wxVERSION_NUM_DOT_STRING "\0"
57 VALUE "InternalName", "wxMSW\0"
58 VALUE "LegalCopyright", "Copyright 1993-2010 wxWidgets development team\0"
59 VALUE "LegalTrademarks", "\0"
60 VALUE "OriginalFilename", wxSTRINGIZE(WXDLLNAME) ".dll\0"
61 VALUE "PrivateBuild", "\0"
62 VALUE "ProductName", "wxWidgets\0"
63 VALUE "ProductVersion", wxVERSION_NUM_DOT_STRING "\0"
64 VALUE "SpecialBuild", "\0"
69 VALUE "Translation", LANG, CHARSET