]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | /* |
2 | * File: dummy.cc | |
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, I | |
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 wxWindows 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 | #define INCL_OS2 | |
23 | #include <os2.h> | |
24 | ||
25 | #if defined(__VISAGECPP__) | |
26 | char wxDummyChar = 0; | |
27 | #endif | |
28 |