1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wxprec.h
|
|
|
|
// Purpose: Includes the appropriate files for precompiled headers
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c)
|
1999-02-03 16:48:12 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-02-03 22:50:06 +00:00
|
|
|
#include "wx/setup.h" // always include this file (under Unix it's generated by configure)
|
|
|
|
#include "wx/defs.h" // compiler definitions
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// check if to use precompiled headers
|
1999-07-28 03:38:12 +00:00
|
|
|
#if ((defined(__BORLANDC__) || defined(__VISUALC__) || defined(__WATCOMC__)) && defined(__WXMSW__)) || defined(__WXPM__)
|
1999-05-29 15:44:06 +00:00
|
|
|
#if !defined(NOPCH)
|
1999-02-03 16:48:12 +00:00
|
|
|
#define WX_PRECOMP
|
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// For some reason, this must be defined for common dialogs to work.
|
|
|
|
#ifdef __WATCOMC__
|
1999-02-03 16:48:12 +00:00
|
|
|
#define INCLUDE_COMMDLG_H 1
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// include the wx definitions
|
|
|
|
#ifdef WX_PRECOMP
|
|
|
|
|
1999-05-31 19:24:12 +00:00
|
|
|
#ifdef __WXMSW__
|
1999-02-06 23:32:34 +00:00
|
|
|
#include <windows.h>
|
1999-05-31 19:24:12 +00:00
|
|
|
#include "wx/msw/winundef.h"
|
1998-12-10 10:57:29 +00:00
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-05-31 19:24:12 +00:00
|
|
|
#include "wx/wx.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-01-19 18:23:02 +00:00
|
|
|
|
1999-02-03 22:50:06 +00:00
|
|
|
#endif // WX_PRECOMP
|
1998-05-20 14:01:55 +00:00
|
|
|
|