1998-05-20 10:01:55 -04: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 11:48:12 -05:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-08-02 17:31:09 -04:00
|
|
|
// compiler detection; includes setup.h
|
|
|
|
#include "wx/defs.h"
|
1999-02-03 17:50:06 -05:00
|
|
|
|
1999-08-02 17:31:09 -04:00
|
|
|
// check if to use precompiled headers: do it for most Windows compilers unless
|
|
|
|
// explicitly disabled by defining NOPCH
|
1999-07-27 23:38:12 -04:00
|
|
|
#if ((defined(__BORLANDC__) || defined(__VISUALC__) || defined(__WATCOMC__)) && defined(__WXMSW__)) || defined(__WXPM__)
|
1999-05-29 11:44:06 -04:00
|
|
|
#if !defined(NOPCH)
|
1999-02-03 11:48:12 -05:00
|
|
|
#define WX_PRECOMP
|
|
|
|
#endif
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// For some reason, this must be defined for common dialogs to work.
|
|
|
|
#ifdef __WATCOMC__
|
1999-08-02 17:31:09 -04:00
|
|
|
#define INCLUDE_COMMDLG_H 1
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WX_PRECOMP
|
|
|
|
|
1999-08-02 17:31:09 -04:00
|
|
|
// include standard Windows headers
|
1999-05-31 15:24:12 -04:00
|
|
|
#ifdef __WXMSW__
|
1999-08-02 17:31:09 -04:00
|
|
|
#include <windows.h>
|
|
|
|
#include "wx/msw/winundef.h"
|
1998-12-10 05:57:29 -05:00
|
|
|
#endif
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-08-02 17:31:09 -04:00
|
|
|
// include the most common wx headers
|
1999-05-31 15:24:12 -04:00
|
|
|
#include "wx/wx.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-08-13 15:24:13 -04:00
|
|
|
#endif // WX_PRECOMP
|