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