home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / WXWIN140.ZIP / SRC / DUMMYDLL.CC < prev    next >
C/C++ Source or Header  |  1993-03-29  |  828b  |  25 lines

  1. /*
  2.  * dummydll.cc
  3.  *
  4.  * A dummy file to include windows.h. If precompiling windows.h, I
  5.  * always start by compiling this and producing the PCH file.
  6.  * Then subsequent source files use the PCH file.
  7.  *
  8.  * If precompiling windows.h for wxWindows and derived apps,
  9.  * link dummydll.obj with your program (the linker complains otherwise).
  10.  *
  11.  * This is the only convenient way I found to use precompiled headers
  12.  * under MSC 7.
  13.  *
  14.  * If precompiling wx.h, you won't need to do this. In that case,
  15.  * remove the precompilation switches in src/makefile.unx, and add
  16.  * appropriate precompilation switches to your app. makefile
  17.  * (not forgetting to put a reference to wx.h in ALL sources which need
  18.  * wxWindows support).
  19.  *
  20.  * This will produce a big PCH file since it incorporates windows.h
  21.  * and wx.h.
  22.  */
  23.  
  24. #include <windows.h>
  25.