]> git.saurik.com Git - wxWidgets.git/blame - src/common/base.rc
warnings (and some errors) fixes for wxUniv DLL build
[wxWidgets.git] / src / common / base.rc
CommitLineData
3ca6a5f0
BP
1///////////////////////////////////////////////////////////////////////////////
2// Name: src/base/base.rc
3// Purpose: contains version info resource for wxBase 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
12#include "wx/version.h"
13
14#ifdef _DEBUG
15 #define DLL_FLAGS 0x1L
16 #define DLL_SUFFIX "d"
17#else
18 #define DLL_FLAGS 0x0L
19 #define DLL_SUFFIX ""
20#endif
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
27 FILEOS 0x40004L
28 FILETYPE 0x2L
29 FILESUBTYPE 0x0L
30BEGIN
31 BLOCK "StringFileInfo"
32 BEGIN
33 BLOCK "040904b0"
34 BEGIN
35 VALUE "Comments", "wxBase (part of Windows) cross-platform framework\0"
36 VALUE "CompanyName", "wxWindows development team\0"
37 VALUE "FileDescription", "wxBase is a non GUI part of wxWindows\0"
c7b3563e 38 VALUE "FileVersion", wxVERSION_NUM_DOT_STRING "\0"
3ca6a5f0 39 VALUE "InternalName", "wxBase\0"
192e6679 40