]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/dummy.cpp
Remove unnecessary header dependencies. Fix resulting compilation
[wxWidgets.git] / src / msw / dummy.cpp
index 4b5d3141e873ee9af2452fe6b848ac19330445aa..4829376c7c7f75dfe6ab8afaba18a12c7af15f45 100644 (file)
  * This will produce a big PCH file.
  */
 
-#if defined(__BORLANDC__)
-#if !(defined(__WIN32__) || defined(__NT__) || defined(__WIN32__))
-#pragma hdrfile "c:\wx\src\msw\wx.pch"
-#endif
-
-#pragma hdrstart
-#endif
-
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
     #pragma hdrstop
 #endif
 
-#include <windows.h>
-
 #include "wx/msw/msvcrt.h"
 
 // Foils optimizations in Visual C++ (see also app.cpp). Without it,
 // dummy.obj isn't linked and we get a linker error.
-#if defined(__VISUALC__)
+#if defined(__VISUALC__) && defined(__WIN16__)
     char wxDummyChar = 0;
 #endif