]> git.saurik.com Git - wxWidgets.git/blame - src/msw/version.rc
Use stock id instead of duplicating its string label in CheckFit().
[wxWidgets.git] / src / msw / version.rc
CommitLineData
f6bcfd97
BP
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
de5dd006 9// Licence: wxWidgets license
f6bcfd97
BP
10///////////////////////////////////////////////////////////////////////////////
11
3ca6a5f0
BP
12#include "wx/version.h"
13
c7b3563e
VZ
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
1fd4a033 16#ifdef WXMAKINGDLL
c7b3563e 17 #define wxVFT 2 // VFT_DLL
1fd4a033 18#else
c7b3563e 19 #define wxVFT 1 // VFT_APP
1fd4a033
VZ
20#endif
21
3ca6a5f0
BP
22#ifdef _DEBUG
23 #define DLL_FLAGS 0x1L
f6bcfd97 24#else
3ca6a5f0 25 #define DLL_FLAGS 0x0L
f6bcfd97 26#endif
3ca6a5f0 27
ee2f43c0
VZ
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
31#define LANG "0409"
d778cb65 32#ifdef _UNICODE
ee2f43c0 33 #define CHARSET "04b0"
1687f8af 34#else
ee2f43c0 35 #define CHARSET "0000"
d778cb65
VZ
36#endif
37
3ca6a5f0 381 VERSIONINFO
d6c09fee
RD
39 FILEVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxSUBRELEASE_NUMBER
40 PRODUCTVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxSUBRELEASE_NUMBER
3ca6a5f0
BP
41 FILEFLAGSMASK 0x3fL
42 FILEFLAGS DLL_FLAGS
c7b3563e 43 FILEOS 0x40004L // VOS_NT_WINDOWS32
1fd4a033 44 FILETYPE wxVFT
f6bcfd97
BP
45 FILESUBTYPE 0x0L
46BEGIN
47 BLOCK "StringFileInfo"
48 BEGIN
ee2f43c0 49 BLOCK LANG CHARSET
f6bcfd97 50 BEGIN
de5dd006
VS
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"
f6bcfd97 55 VALUE "InternalName", "wxMSW\0"
f226082d 56