X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1fd4a033f4df6dc63fde9b62bf70792ee1f7f047..78a87a5d73f90996161912b8a2ee257834f6f8fb:/src/msw/version.rc diff --git a/src/msw/version.rc b/src/msw/version.rc index 1e53b56e78..a5a4e7a657 100644 --- a/src/msw/version.rc +++ b/src/msw/version.rc @@ -11,10 +11,12 @@ #include "wx/version.h" +// see http://msdn.microsoft.com/library/psdk/winui/rc_7x2d.htm for values: we +// don't use symbolic constants because older compilers might not have them #ifdef WXMAKINGDLL - #define wxVFT VFT_DLL + #define wxVFT 2 // VFT_DLL #else - #define wxVFT VFT_APP + #define wxVFT 1 // VFT_APP #endif #ifdef _DEBUG @@ -25,44 +27,32 @@ #define DLL_SUFFIX "" #endif -//see http://msdn.microsoft.com/library/psdk/winui/rc_7x2d.htm for values +#ifdef _UNICODE + #define LANG "04090000" +#else + #define LANG "040904b0" +#endif + 1 VERSIONINFO FILEVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxBETA_NUMBER PRODUCTVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxBETA_NUMBER FILEFLAGSMASK 0x3fL FILEFLAGS DLL_FLAGS - // for NT/win2000 use VOS_NT next - FILEOS VOS__WINDOWS32 + FILEOS 0x40004L // VOS_NT_WINDOWS32 FILETYPE wxVFT FILESUBTYPE 0x0L BEGIN BLOCK "StringFileInfo" BEGIN // US English Ascii; see http://msdn.microsoft.com/library/psdk/winui/rc_3rxn.htm for codes - BLOCK "04090000" - BEGIN - VALUE "Comments", "wxWindows cross-platform GUI framework\0" - VALUE "CompanyName", "wxWindows development team\0" - VALUE "FileDescription", "wxWindows for MSW\0" - VALUE "FileVersion", "wxWindows Library " wxVERSION_NUM_DOT_STRING "\0" - VALUE "InternalName", "wxMSW\0" - VALUE "LegalCopyright", "Copyright © 1993, 2001 wxWindows development team\0" - VALUE "LegalTrademarks", "\0" - VALUE "OriginalFilename", "wxmsw" wxVERSION_NUM_STRING DLL_SUFFIX ".dll\0" - VALUE "PrivateBuild", "\0" - VALUE "ProductName", "wxWindows\0" - VALUE "ProductVersion", wxVERSION_NUM_DOT_STRING "\0" - VALUE "SpecialBuild", "\0" - END - //US English Unicode; see http://msdn.microsoft.com/library/psdk/winui/rc_3rxn.htm for codes - BLOCK "040904b0" + BLOCK LANG BEGIN VALUE "Comments", "wxWindows cross-platform GUI framework\0" VALUE "CompanyName", "wxWindows development team\0" VALUE "FileDescription", "wxWindows for MSW\0" VALUE "FileVersion", "wxWindows Library " wxVERSION_NUM_DOT_STRING "\0" VALUE "InternalName", "wxMSW\0" - VALUE "LegalCopyright", "Copyright © 1993, 2001 wxWindows development team\0" + VALUE "LegalCopyright", "Copyright © 1993-2004 wxWindows development team\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "wxmsw" wxVERSION_NUM_STRING DLL_SUFFIX ".dll\0" VALUE "PrivateBuild", "\0"