From: Vadim Zeitlin Date: Sun, 19 Dec 2004 23:12:05 +0000 (+0000) Subject: added test for Unicode/ANSI X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d778cb65f7e8cf954fab9e57c5fa04045302a123?hp=d70471fe7204a4a6541c543db22323f98b1369cd added test for Unicode/ANSI git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31079 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/version.rc b/src/msw/version.rc index 0a8d7284cc..a5a4e7a657 100644 --- a/src/msw/version.rc +++ b/src/msw/version.rc @@ -27,6 +27,12 @@ #define DLL_SUFFIX "" #endif +#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 @@ -39,23 +45,7 @@ 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-2004 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"