Include wx/choicdlg.h, wx/textdlg.h and wx/filedlg.h according to precompiled headers...
[wxWidgets.git] / src / common / base.rc
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
22 1 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
30 BEGIN
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"
38             VALUE "FileVersion", wxVERSION_NUM_DOT_STRING "\0"
39             VALUE "InternalName", "wxBase\0"
40             VALUE "LegalCopyright", "Copyright © 1993-2002 wxWindows development team\0"
41             VALUE "LegalTrademarks", "\0"
42             VALUE "OriginalFilename", "wxbase" wxVERSION_NUM_STRING DLL_SUFFIX ".dll\0"
43             VALUE "PrivateBuild", "\0"
44             VALUE "ProductName", "wxWindows\0"
45             VALUE "ProductVersion", wxVERSION_NUM_DOT_STRING "\0"
46             VALUE "SpecialBuild", "\0"
47         END
48     END
49 END