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-02-03 17:50:06 -05: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 10:01:55 -04:00
|
|
|
// check if to use precompiled headers
|
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-02-03 11:48:12 -05:00
|
|
|
#define INCLUDE_COMMDLG_H 1
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// include the wx definitions
|
|
|
|
#ifdef WX_PRECOMP
|
|
|
|
|
1999-05-31 15:24:12 -04:00
|
|
|
#ifdef __WXMSW__
|
1999-02-06 18:32:34 -05:00
|
|
|
#include <windows.h>
|
1999-05-31 15:24:12 -04:00
|
|
|
#include "wx/msw/winundef.h"
|
1998-12-10 05:57:29 -05:00
|
|
|
#endif
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-07-27 23:38:12 -04:00
|
|
|
#ifdef __WXPM__
|
|
|
|
#define INCL_OS2
|
|
|
|
#include <os2.h>
|
|
|
|
#endif
|
|
|
|
|
1999-05-31 15:24:12 -04:00
|
|
|
#include "wx/wx.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-01-19 13:23:02 -05:00
|
|
|
|
1999-02-03 17:50:06 -05:00
|
|
|
#endif // WX_PRECOMP
|
1998-05-20 10:01:55 -04:00
|
|
|
|