1/*
2 * File:        src/common/dummy.cpp
3 * Purpose:     See below
4 * Author:      Julian Smart
5 * Created:     1993
6 * Updated:
7 * Copyright:   (c) 1993, AIAI, University of Edinburgh
8 */
9
10/* A dummy file to include wx.h. If precompiling wx.h,
11 * always start by compiling this and producing the PCH file.
12 * Then subsequent source files use the PCH file.
13 *
14 * If precompiling wx.h for wxWidgets and derived apps,
15 * link dummy.obj with your program.
16 *
17 * This will produce a big PCH file.
18 */
19
20#include "wx/wxprec.h"
21
22#ifdef __BORLANDC__
23    #pragma hdrstop
24#endif
25
26#ifdef __WXMSW__
27    #include "wx/msw/msvcrt.h"
28#endif
29
30#ifdef __VISAGECPP__
31    char wxDummyChar = 0;
32#endif
33