]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | /* |
3f4a0c5b VZ |
2 | * File: dummydll.cc |
3 | * Purpose: | |
4 | * Author: Julian Smart | |
5 | * Created: 1993 | |
6 | * Updated: | |
2bda0e17 KB |
7 | * Copyright: (c) 1993, AIAI, University of Edinburgh |
8 | */ | |
9 | ||
3f4a0c5b | 10 | /* static const char sccsid[] = "@(#)dummydll.cc 1.2 5/9/94"; */ |
2bda0e17 KB |
11 | |
12 | /* | |
13 | * A dummy file to include wx.h. If precompiling wx.h, I | |
14 | * always start by compiling this and producing the PCH file. | |
15 | * Then subsequent source files use the PCH file. | |
16 | */ | |
17 | ||
18 | #include "wx/wxprec.h" | |
19 | ||
3d05544e JS |
20 | // Foils optimizations in Visual C++ (see also app.cpp). Without it, |
21 | // dummy.obj isn't linked and we get a linker error. | |
750b78ba | 22 | #if defined(__VISUALC__) |
3f4a0c5b | 23 | char wxDummyChar=0; |
3d05544e JS |
24 | #endif |
25 |