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
|
2003-05-02 11:28:38 +00:00
|
|
|
// adding DigitalMars here appears to amke it slower!
|
1999-08-02 21:31:09 +00:00
|
|
|
// explicitly disabled by defining NOPCH
|
2003-05-02 11:28:38 +00:00
|
|
|
#if ((defined(__BORLANDC__) || defined(__VISUALC__) || defined(__WATCOMC__)) && defined(__WXMSW__)) || defined(__VISAGECPP__) || defined(__MWERKS__)
|
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
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// include <wx/wxchar.h> first to ensure that UNICODE macro is correctly set
|
|
|
|
// _before_ including <windows.h>
|
|
|
|
#include "wx/wxchar.h"
|
|
|
|
|
1999-08-02 21:31:09 +00:00
|
|
|
// include standard Windows headers
|
2000-03-10 11:18:22 +00:00
|
|
|
#if defined(__WXMSW__) && !wxUSE_MFC
|
2001-07-07 23:02:09 +00:00
|
|
|
#ifndef STRICT
|
|
|
|
#define STRICT 1
|
|
|
|
#endif
|
|
|
|
|
2000-01-20 23:07:29 +00:00
|
|
|
#include <windows.h>
|
1999-08-02 21:31:09 +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-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
|