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