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-08-02 21:31:09 +00:00
|
|
|
// compiler detection; includes setup.h
|
|
|
|
#include "wx/defs.h"
|
1999-02-03 22:50:06 +00:00
|
|
|
|
1999-08-02 21:31:09 +00:00
|
|
|
// check if to use precompiled headers: do it for most Windows compilers unless
|
|
|
|
// explicitly disabled by defining NOPCH
|
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-08-02 21:31:09 +00:00
|
|
|
#define INCLUDE_COMMDLG_H 1
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WX_PRECOMP
|
|
|
|
|
1999-08-02 21:31:09 +00:00
|
|
|
// include standard Windows headers
|
1999-05-31 19:24:12 +00:00
|
|
|
#ifdef __WXMSW__
|
1999-08-02 21:31:09 +00:00
|
|
|
#include <windows.h>
|
|
|
|
#include "wx/msw/winundef.h"
|
1998-12-10 10:57:29 +00:00
|
|
|
#endif
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-08-02 21:31:09 +00:00
|
|
|
// include the most common wx headers
|
1999-05-31 19:24:12 +00:00
|
|
|
#include "wx/wx.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-08-13 19:24:13 +00:00
|
|
|
#endif // WX_PRECOMP
|