2004-08-15 Casper S. Hornstrup <chorns@users.sourceforge.net>
authorCasper Hornstrup <chorns@users.sourceforge.net>
Sun, 15 Aug 2004 17:34:28 +0000 (17:34 +0000)
committerCasper Hornstrup <chorns@users.sourceforge.net>
Sun, 15 Aug 2004 17:34:28 +0000 (17:34 +0000)
* lib/crtdll/.cvsignore: Ignore *.gch.
* lib/crtdll/precomp.h: New file.
* lib/crtdll/Makefile (TARGET_PCH): Set to precomp.h.
* lib/crtdll/*/*.c: Use pre-compiled header.

svn path=/trunk/; revision=10554

78 files changed:
reactos/ChangeLog
reactos/lib/crtdll/.cvsignore
reactos/lib/crtdll/conio/cputs.c
reactos/lib/crtdll/conio/getch.c
reactos/lib/crtdll/conio/kbhit.c
reactos/lib/crtdll/conio/putch.c
reactos/lib/crtdll/direct/chdir.c
reactos/lib/crtdll/direct/chdrive.c
reactos/lib/crtdll/direct/getcwd.c
reactos/lib/crtdll/direct/getdcwd.c
reactos/lib/crtdll/direct/getdfree.c
reactos/lib/crtdll/direct/getdrive.c
reactos/lib/crtdll/direct/mkdir.c
reactos/lib/crtdll/direct/rmdir.c
reactos/lib/crtdll/except/abnorter.c
reactos/lib/crtdll/except/exhand2.c
reactos/lib/crtdll/except/matherr.c
reactos/lib/crtdll/except/unwind.c
reactos/lib/crtdll/io/access.c
reactos/lib/crtdll/io/chmod.c
reactos/lib/crtdll/io/close.c
reactos/lib/crtdll/io/commit.c
reactos/lib/crtdll/io/dup.c
reactos/lib/crtdll/io/eof.c
reactos/lib/crtdll/io/filelen.c
reactos/lib/crtdll/io/find.c
reactos/lib/crtdll/io/locking.c
reactos/lib/crtdll/io/lseek.c
reactos/lib/crtdll/io/open.c
reactos/lib/crtdll/io/pipe.c
reactos/lib/crtdll/io/read.c
reactos/lib/crtdll/io/unlink.c
reactos/lib/crtdll/io/write.c
reactos/lib/crtdll/makefile
reactos/lib/crtdll/malloc/expand.c
reactos/lib/crtdll/malloc/heap.c
reactos/lib/crtdll/mbstring/islead.c
reactos/lib/crtdll/misc/GetArgs.c
reactos/lib/crtdll/misc/crt1.c
reactos/lib/crtdll/misc/debug.c
reactos/lib/crtdll/misc/dllcrt1.c
reactos/lib/crtdll/misc/dllmain.c
reactos/lib/crtdll/misc/main.c
reactos/lib/crtdll/misc/sleep.c
reactos/lib/crtdll/precomp.h [new file with mode: 0644]
reactos/lib/crtdll/process/_cwait.c
reactos/lib/crtdll/process/_system.c
reactos/lib/crtdll/process/dll.c
reactos/lib/crtdll/process/procid.c
reactos/lib/crtdll/process/spawnve.c
reactos/lib/crtdll/process/thread.c
reactos/lib/crtdll/process/threadid.c
reactos/lib/crtdll/signal/xcptfil.c
reactos/lib/crtdll/stdio/fputs.c
reactos/lib/crtdll/stdio/fputws.c
reactos/lib/crtdll/stdio/getc.c
reactos/lib/crtdll/stdio/getenv.c
reactos/lib/crtdll/stdio/popen.c
reactos/lib/crtdll/stdio/putc.c
reactos/lib/crtdll/stdio/puts.c
reactos/lib/crtdll/stdio/remove.c
reactos/lib/crtdll/stdio/rename.c
reactos/lib/crtdll/stdio/tempnam.c
reactos/lib/crtdll/stdio/tmpnam.c
reactos/lib/crtdll/stdlib/_exit.c
reactos/lib/crtdll/stdlib/alloca.c
reactos/lib/crtdll/stdlib/errno.c
reactos/lib/crtdll/stdlib/fullpath.c
reactos/lib/crtdll/stdlib/malloc.c
reactos/lib/crtdll/stdlib/obsol.c
reactos/lib/crtdll/stdlib/putenv.c
reactos/lib/crtdll/stdlib/senv.c
reactos/lib/crtdll/sys_stat/fstat.c
reactos/lib/crtdll/sys_stat/stat.c
reactos/lib/crtdll/sys_stat/systime.c
reactos/lib/crtdll/time/clock.c
reactos/lib/crtdll/time/ctime.c
reactos/lib/crtdll/time/time.c

index 234a2cf..7438434 100644 (file)
@@ -1,7 +1,15 @@
+2004-08-15  Casper S. Hornstrup  <chorns@users.sourceforge.net>
+
+       * lib/crtdll/.cvsignore: Ignore *.gch.
+       * lib/crtdll/precomp.h: New file.
+       * lib/crtdll/Makefile (TARGET_PCH): Set to precomp.h.
+       * lib/crtdll/*/*.c: Use pre-compiled header.
+
 2004-08-15  Casper S. Hornstrup  <chorns@users.sourceforge.net>
 
        * lib/advapi32/.cvsignore: Ignore *.gch.
        * lib/advapi32/advapi32.h: New file.
+       * lib/advapi32/Makefile (TARGET_PCH): Set to advapi32.h.
        * lib/advapi32/*/*.c: Use pre-compiled header.
 
 2004-08-15  Casper S. Hornstrup  <chorns@users.sourceforge.net>
index 2cedff6..4f7ad55 100644 (file)
@@ -7,7 +7,7 @@
  * UPDATE HISTORY:
  *              28/12/98: Created
  */
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/conio.h>
 #include <msvcrt/string.h>
 #include <msvcrt/stdio.h>
index 1037ce6..02b2906 100644 (file)
@@ -7,7 +7,7 @@
  * UPDATE HISTORY:
  *              28/12/98: Created
  */
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/conio.h>
 #include <msvcrt/stdio.h>
 #include <msvcrt/io.h>
index c8cbb75..4c28e4b 100644 (file)
@@ -8,7 +8,7 @@
  *              28/12/98: Created
  */
 
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/conio.h>
 #include <msvcrt/internal/console.h>
 
index 269bc01..5cf6525 100644 (file)
@@ -7,7 +7,8 @@
  * UPDATE HISTORY:
  *              28/12/98: Created
  */
-#include <windows.h>
+
+#include "precomp.h"
 #include <msvcrt/conio.h>
 
 /*
index 8d2bf87..7286533 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/ctype.h>
 #include <msvcrt/direct.h>
 
index 830b1d9..bece155 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/ctype.h>
 #include <msvcrt/direct.h>
 #include <msvcrt/stdlib.h>
index cd23f19..48ac929 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/direct.h>
 #include <msvcrt/stdlib.h>
 
index ab53965..cdc85b7 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/direct.h>
 
 /*
index d436579..84601c4 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/ctype.h>
 #include <msvcrt/direct.h>
 
index 19171f1..4074baf 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/ctype.h>
 #include <msvcrt/direct.h>
 
index ec95060..15e85d3 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/direct.h>
 
 
index d178fe1..1e39bfb 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/direct.h>
 
 
index f6c28cc..3f27a81 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 
 #ifdef __GNUC__
index 2bda8f8..4900148 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <ntos/except.h>
 
 
index 9359e46..c800b2c 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <ntos/except.h>
 
 
index 7aad381..de846f9 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #define PEXCEPTION_FRAME void*
 
 /*
index 9472e6c..1a61c9b 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/io.h>
 #include <msvcrt/errno.h>
 #define NDEBUG
index df2bc62..3899c10 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/io.h>
 
 #define NDEBUG
index a1004fa..9388877 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/io.h>
 #include <msvcrt/internal/file.h>
 
index 2cbe4b9..d4024a6 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/io.h>
 #include <msvcrt/errno.h>
 #include <msvcrt/internal/file.h>
index cd3c7ca..1418f7c 100644 (file)
@@ -1,5 +1,5 @@
-/* $Id: dup.c,v 1.8 2003/07/11 17:25:16 royce Exp $ */
-#include <windows.h>
+/* $Id: dup.c,v 1.9 2004/08/15 17:34:26 chorns Exp $ */
+#include "precomp.h"
 #include <msvcrt/io.h>
 #include <msvcrt/internal/file.h>
 
index 448df7d..9ee9b27 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/io.h>
 
 /*
index 1e7688b..42ea4ec 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/io.h>
 
 
index a67b983..4f6b951 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/io.h>
 #include <msvcrt/string.h>
 #include <msvcrt/internal/file.h>
index 48440ba..6002303 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/io.h>
 
 
index 7fb4f23..0fc5351 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/io.h>
 #include <msvcrt/internal/file.h>
 
index b9c8e51..046c7d9 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: open.c,v 1.14 2003/07/11 17:25:16 royce Exp $
+/* $Id: open.c,v 1.15 2004/08/15 17:34:26 chorns Exp $
  *
  * COPYRIGHT:   See COPYING in the top level directory
  * PROJECT:     ReactOS system libraries
@@ -13,7 +13,7 @@
 
 // possibly store extra information at the handle
 
-#include <windows.h>
+#include "precomp.h"
 #include <stdarg.h>
 #include <msvcrt/io.h>
 #include <msvcrt/fcntl.h>
index 5347ec3..2593c96 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: pipe.c,v 1.5 2003/07/11 17:25:16 royce Exp $
+/* $Id: pipe.c,v 1.6 2004/08/15 17:34:26 chorns Exp $
  *
  * COPYRIGHT:   See COPYING in the top level directory
  * PROJECT:     ReactOS system libraries
@@ -8,7 +8,8 @@
  * UPDATE HISTORY:
  *              28/12/98: Appropriated for Reactos
  */
-#include <windows.h>
+
+#include "precomp.h"
 #include <msvcrt/io.h>
 #include <msvcrt/internal/file.h>
 
index 2496d10..91b92c8 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: read.c,v 1.10 2003/07/11 17:25:16 royce Exp $
+/* $Id: read.c,v 1.11 2004/08/15 17:34:26 chorns Exp $
  *
  * COPYRIGHT:   See COPYING in the top level directory
  * PROJECT:     ReactOS system libraries
@@ -8,7 +8,8 @@
  * UPDATE HISTORY:
  *              28/12/1998: Created
  */
-#include <windows.h>
+
+#include "precomp.h"
 #include <msvcrt/io.h>
 #include <msvcrt/internal/file.h>
 
index 1f7e9da..1dde8b5 100644 (file)
@@ -7,9 +7,9 @@
  * UPDATE HISTORY:
  *              28/12/98: Created
  */
-#include <windows.h>
-#include <msvcrt/io.h>
 
+#include "precomp.h"
+#include <msvcrt/io.h>
 
 
 /*
index d408615..aff6103 100644 (file)
@@ -7,9 +7,9 @@
  * UPDATE HISTORY:
  *              28/12/98: Created
  */
-#include <windows.h>
-#include <msvcrt/io.h>
 
+#include "precomp.h"
+#include <msvcrt/io.h>
 
 
 /*
index b6c3815..eba3c9b 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: makefile,v 1.65 2004/06/15 08:53:52 hbirr Exp $
+# $Id: makefile,v 1.66 2004/08/15 17:34:25 chorns Exp $
 
 PATH_TO_TOP = ../..
 
@@ -10,6 +10,8 @@ TARGET_TYPE = dynlink
 
 TARGET_NAME = crtdll
 
+TARGET_PCH = precomp.h
+
 TARGET_BASE = $(TARGET_BASE_LIB_CRTDLL)
 
 TARGET_LFLAGS = -nostartfiles -nostdlib
index 8f1d965..eb60ed5 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/malloc.h>
 
 /*
index 55155a1..e55b8a1 100644 (file)
@@ -1,5 +1,4 @@
-
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/malloc.h>
 
 /*
index d1594cf..52fe048 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/mbstring.h>
 
 /*
index d48f4ad..5829c2e 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 #include <msvcrt/string.h>
 
index 88b3199..385ec05 100644 (file)
  *  DISCLAMED. This includes but is not limited to warrenties of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  *
- * $Revision: 1.4 $
- * $Author: robd $
- * $Date: 2002/11/24 18:42:15 $
+ * $Revision: 1.5 $
+ * $Author: chorns $
+ * $Date: 2004/08/15 17:34:27 $
  *
  */
 
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 #include <msvcrt/stdio.h>
 #include <msvcrt/io.h>
 #include <msvcrt/fcntl.h>
 #include <msvcrt/process.h>
 #include <msvcrt/float.h>
-#include <windows.h>
+
 
 /* NOTE: The code for initializing the _argv, _argc, and environ variables
  *       has been moved to a separate .c file which is included in both
index 16b94a5..7bd43ba 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
index c3fc91f..aa2047a 100644 (file)
  *  DISCLAMED. This includes but is not limited to warrenties of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  *
- * $Revision: 1.4 $
- * $Author: royce $
- * $Date: 2003/07/11 17:25:16 $
+ * $Revision: 1.5 $
+ * $Author: chorns $
+ * $Date: 2004/08/15 17:34:27 $
  * 
  */
 
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 #include <msvcrt/io.h>
 #include <msvcrt/process.h>
-#include <windows.h>
 
 
 /* See note in crt0.c */
index 9812d49..35aa37d 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: dllmain.c,v 1.5 2002/11/24 18:42:15 robd Exp $
+/* $Id: dllmain.c,v 1.6 2004/08/15 17:34:27 chorns Exp $
  *
  * dllmain.c
  *
  *  DISCLAMED. This includes but is not limited to warrenties of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  *
- * $Revision: 1.5 $
- * $Author: robd $
- * $Date: 2002/11/24 18:42:15 $
+ * $Revision: 1.6 $
+ * $Author: chorns $
+ * $Date: 2004/08/15 17:34:27 $
  *
  */
 
-#include <windows.h>
+#include "precomp.h"
 #include <stdarg.h>
 #include <msvcrt/stdio.h>
 #include <string.h>
index aa080bc..1508a97 100644 (file)
  *  DISCLAMED. This includes but is not limited to warrenties of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  *
- * $Revision: 1.3 $
- * $Author: robd $
- * $Date: 2002/11/29 12:27:48 $
+ * $Revision: 1.4 $
+ * $Author: chorns $
+ * $Date: 2004/08/15 17:34:27 $
  *
  */
 
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 #include <msvcrt/process.h>
-#include <windows.h>
 
 
 #define ISSPACE(a)     (a == ' ' || a == '\t')
index 8735808..98d3175 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 
 
 void sleep(unsigned long timeout) 
diff --git a/reactos/lib/crtdll/precomp.h b/reactos/lib/crtdll/precomp.h
new file mode 100644 (file)
index 0000000..776a87c
--- /dev/null
@@ -0,0 +1 @@
+#include <windows.h>
index a4af675..5a52df5 100644 (file)
@@ -7,7 +7,8 @@
  * UPDATE HISTORY:
  *              04/03/99: Created
  */
-#include <windows.h>
+
+#include "precomp.h"
 #include <msvcrt/process.h>
 #include <msvcrt/errno.h>
 #include <msvcrt/internal/file.h>
index 334ee97..a01d1c0 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: _system.c,v 1.8 2003/08/05 15:41:02 weiden Exp $
+/* $Id: _system.c,v 1.9 2004/08/15 17:34:27 chorns Exp $
  *
  * COPYRIGHT:   See COPYING in the top level directory
  * PROJECT:     ReactOS system libraries
@@ -8,7 +8,8 @@
  * UPDATE HISTORY:
  *              04/03/99: Created
  */
-#include <windows.h>
+
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 #include <msvcrt/string.h>
 #include <msvcrt/process.h>
index b6d371d..771732d 100644 (file)
@@ -8,7 +8,7 @@
  *              04/03/99: Created
  */
 
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/process.h>
 
 
index ab5c2d8..87c1458 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/process.h>
 
 /*
index b7dc04b..597676e 100644 (file)
@@ -2,7 +2,7 @@
 /* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */
 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
 
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 #include <msvcrt/stdlib.h>
 #include <msvcrt/string.h>
index 7589d94..52998b9 100644 (file)
@@ -1,7 +1,8 @@
-/* $Id: thread.c,v 1.7 2003/07/11 17:25:32 royce Exp $
+/* $Id: thread.c,v 1.8 2004/08/15 17:34:27 chorns Exp $
  *
  */
-#include <windows.h>
+
+#include "precomp.h"
 #include <msvcrt/errno.h>
 #include <msvcrt/process.h>
 #include <msvcrt/internal/file.h>
index 032827e..2b17a83 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/process.h>
 
 /*
index aaff4a9..9bf6d92 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 
 
 /*
index 4899716..e88b5c6 100644 (file)
@@ -1,8 +1,10 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
+
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 #include <msvcrt/internal/file.h>
 #include <msvcrt/string.h>
-#include <windows.h>
+
 
 /*
  * @implemented
index 399ac41..f65511b 100644 (file)
@@ -1,5 +1,6 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <windows.h>
+
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 #include <msvcrt/internal/file.h>
 #include <msvcrt/string.h>
index 4816107..0b0a1c1 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 #include <msvcrt/wchar.h>
 #include <msvcrt/errno.h>
index 0cf4e1b..172e6f4 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 
 void *malloc(size_t size);
index 9b00409..813357a 100644 (file)
@@ -1,5 +1,4 @@
-
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/io.h>
 #include <msvcrt/errno.h>
 #include <msvcrt/stdio.h>
index f471f3a..6b60be5 100644 (file)
@@ -1,5 +1,5 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 #include <msvcrt/wchar.h>
 #include <msvcrt/errno.h>
index 56dcb7f..aaf26b1 100644 (file)
@@ -1,5 +1,5 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 #include <msvcrt/io.h>
 #include <msvcrt/string.h>
index cb6f26f..c296700 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 
 
 /*
index 286bced..cb71b6a 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 #include <msvcrt/io.h> 
 
index 526790a..37fd18f 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 #include <msvcrt/stdlib.h>
 
index 6a5d27b..e542171 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdio.h>
 #include <msvcrt/string.h>
 
index 766b3b1..cb7b5e1 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 #include <msvcrt/io.h>
 #include <msvcrt/fcntl.h>
index cfbcc91..5380246 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 
 
index cf721e5..01a815f 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/errno.h>
 #include "../../msvcrt/stdlib/doserrmap.h"
 
index 5c7b4dd..36f7d0e 100644 (file)
@@ -7,7 +7,8 @@
  * UPDATE HISTORY:
  *              28/12/98: Created
  */
-#include <windows.h>
+
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 
 #undef fullpath
index f92fbf8..496affc 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 
 
index 6f686bb..48e465f 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 
 #undef _cpumode
index 0d43f8c..da4885c 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 #include <msvcrt/string.h>
 
index 1b8b828..918c9ce 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/stdlib.h>
 #include <msvcrt/string.h>
 
index 2aa5f9f..f64c101 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: fstat.c,v 1.13 2003/07/11 17:25:32 royce Exp $
+/* $Id: fstat.c,v 1.14 2004/08/15 17:34:27 chorns Exp $
  *
  * COPYRIGHT:   See COPYING in the top level directory
  * PROJECT:     ReactOS system libraries
@@ -8,7 +8,8 @@
  * UPDATE HISTORY:
  *              28/12/98: Created
  */
-#include <windows.h>
+
+#include "precomp.h"
 #include <msvcrt/sys/types.h>
 #include <msvcrt/sys/stat.h>
 #include <msvcrt/fcntl.h>
index fe46c21..b46ba83 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/sys/types.h>
 #include <msvcrt/sys/stat.h>
 #include <msvcrt/fcntl.h>
index 1eec193..0fa7343 100644 (file)
@@ -1,4 +1,4 @@
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/sys/time.h>
 
 
index c4b0908..4ad606c 100644 (file)
@@ -8,7 +8,7 @@
  *              28/12/98: Created
  */
 
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/time.h>
 #include <msvcrt/internal/file.h>
 
index 03a41fb..86280b6 100644 (file)
@@ -35,6 +35,7 @@
 ** (guy@auspex.com).
 */
 
+#include "precomp.h"
 #include <msvcrt/fcntl.h>
 #include <msvcrt/time.h>
 #include <msvcrt/string.h>
@@ -42,7 +43,6 @@
 #include <msvcrt/stdio.h>
 #include <msvcrt/stdlib.h>
 
-#include <windows.h>
 #include "tzfile.h"
 
 #include <msvcrt/io.h>
index 6480321..905083e 100644 (file)
@@ -15,7 +15,7 @@
  * Copyright 1996 Alexandre Julliard
  */
 
-#include <windows.h>
+#include "precomp.h"
 #include <msvcrt/time.h>
 #include <msvcrt/internal/file.h>