]> git.saurik.com Git - wxWidgets.git/blame - src/msw/version.rc
1. a couple of compilation warnings fixed (strconv/listctrl)
[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
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
3ca6a5f0
BP
12#include "wx/version.h"
13
14#ifdef _DEBUG
15 #define DLL_FLAGS 0x1L
16 #define DLL_SUFFIX "d"
f6bcfd97 17#else
3ca6a5f0
BP
18 #define DLL_FLAGS 0x0L
19 #define DLL_SUFFIX ""
f6bcfd97 20#endif
3ca6a5f0
BP
21
221 VERSIONINFO
23 FILEVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxBETA_NUMBER
24 PRODUCTVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxBETA_NUMBER
25 FILEFLAGSMASK 0x3fL
26 FILEFLAGS DLL_FLAGS
f6bcfd97
BP
27 FILEOS 0x40004L
28 FILETYPE 0x2L
29 FILESUBTYPE 0x0L
30BEGIN
31 BLOCK "StringFileInfo"
32 BEGIN
33 BLOCK "040904b0"
34 BEGIN
35 VALUE "Comments", "wxWindows cross-platform GUI framework\0"
36 VALUE "CompanyName", "wxWindows development team\0"
37 VALUE "FileDescription", "wxWindows for MSW\0"
3ca6a5f0 38 VALUE "FileVersion", "2.2.1\0"
f6bcfd97 39 VALUE "InternalName", "wxMSW\0"
3ca6a5f0 40