]> git.saurik.com Git - wxWidgets.git/blob - src/msw/wince/dummy.cpp
Removed erroneous copyright names and corrected licence spelling
[wxWidgets.git] / src / msw / wince / dummy.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wince/dummy.cpp
3 // Purpose: Main/DllMain
4 // Author: Marco Cavallini
5 // Modified by:
6 // Created: 08/11/2002
7 // RCS-ID:
8 // Copyright: (c) KOAN SAS ( www.koansoftware.com )
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 /* A dummy file to include wx.h. If precompiling wx.h, I
13 * always start by compiling this and producing the PCH file.
14 * Then subsequent source files use the PCH file.
15 *
16 * This will produce a big PCH file.
17 */
18
19 #include "wx/wxprec.h"
20
21
22 // Foils optimizations in Visual C++ (see also app.cpp). Without it,
23 // dummy.obj isn't linked and we get a linker error.
24
25 char wxDummyChar = 0;
26
27
28