2004-08-16 Casper S. Hornstrup <chorns@users.sourceforge.net>

* subsys/system/usetup/.cvsignore: Add *.gch.
	* subsys/system/usetup/precomp.h: New file.
	* subsys/system/usetup/makefile (TARGET_PCH): Set to precomp.h.
	* subsys/system/usetup/*.c: Use pre-compiled header.

svn path=/trunk/; revision=10565
This commit is contained in:
Casper Hornstrup 2004-08-15 22:29:50 +00:00
parent 74ad04945e
commit ed1baab85f
20 changed files with 38 additions and 28 deletions

View file

@ -1,3 +1,10 @@
2004-08-16 Casper S. Hornstrup <chorns@users.sourceforge.net>
* subsys/system/usetup/.cvsignore: Add *.gch.
* subsys/system/usetup/precomp.h: New file.
* subsys/system/usetup/makefile (TARGET_PCH): Set to precomp.h.
* subsys/system/usetup/*.c: Use pre-compiled header.
2004-08-16 Casper S. Hornstrup <chorns@users.sourceforge.net>
* subsys/system/cmd/.cvsignore: Add *.gch.

View file

@ -4,3 +4,4 @@
*.o
*.sym
*.map
*.gch

View file

@ -24,7 +24,7 @@
* PROGRAMMER: Eric Kohl
*/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ntdll/rtl.h>
#include "usetup.h"

View file

@ -7,6 +7,7 @@
* REVISIONS:
* CSH 15/08-2003 Created
*/
#include <ntos.h>
#include <stdio.h>
#include <string.h>

View file

@ -26,7 +26,7 @@
/* INCLUDES ******************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ddk/ntddblue.h>
#include "usetup.h"

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: drivesup.c,v 1.3 2003/08/09 16:32:25 ekohl Exp $
/* $Id: drivesup.c,v 1.4 2004/08/15 22:29:50 chorns Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/drivesup.c
@ -26,7 +26,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ntdll/rtl.h>
#include "usetup.h"

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: filequeue.c,v 1.3 2003/12/01 18:28:54 navaraf Exp $
/* $Id: filequeue.c,v 1.4 2004/08/15 22:29:50 chorns Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/filequeue.c
@ -27,7 +27,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ntdll/rtl.h>
#include "usetup.h"

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: filesup.c,v 1.10 2004/01/18 22:34:40 hbirr Exp $
/* $Id: filesup.c,v 1.11 2004/08/15 22:29:50 chorns Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/filesup.c
@ -27,7 +27,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ntdll/rtl.h>
#include "usetup.h"

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: format.c,v 1.3 2004/02/23 11:58:27 ekohl Exp $
/* $Id: format.c,v 1.4 2004/08/15 22:29:50 chorns Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/format.c
@ -26,7 +26,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ntdll/rtl.h>
#include <fslib/vfatlib.h>

View file

@ -25,13 +25,10 @@
* Casper S. Hornstrup (chorns@users.sourceforge.net)
*/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ddk/ntddscsi.h>
#include <ntdll/rtl.h>
//#include <ntos/minmax.h>
#include "usetup.h"
#include "console.h"
#include "fslist.h"

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: genlist.c,v 1.2 2004/05/30 14:54:02 ekohl Exp $
/* $Id: genlist.c,v 1.3 2004/08/15 22:29:50 chorns Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/genlist.c
@ -26,7 +26,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ntdll/rtl.h>
#include <ntos/minmax.h>

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: infcache.c,v 1.10 2003/12/01 18:28:54 navaraf Exp $
/* $Id: infcache.c,v 1.11 2004/08/15 22:29:50 chorns Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/infcache.c
@ -27,7 +27,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include "usetup.h"
#include "infcache.h"

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: inicache.c,v 1.8 2003/12/01 18:28:54 navaraf Exp $
/* $Id: inicache.c,v 1.9 2004/08/15 22:29:50 chorns Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/inicache.c
@ -27,7 +27,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include "usetup.h"
#include "inicache.h"

View file

@ -1,4 +1,4 @@
# $Id: makefile,v 1.17 2004/05/30 14:54:02 ekohl Exp $
# $Id: makefile,v 1.18 2004/08/15 22:29:50 chorns Exp $
PATH_TO_TOP = ../../..
@ -12,6 +12,8 @@ TARGET_APPTYPE = native
TARGET_NAME = usetup
TARGET_PCH = precomp.h
TARGET_SDKLIBS = zlib.a vfatlib.a ntdll.a
TARGET_INSTALLDIR = system32

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: partlist.c,v 1.26 2003/12/01 18:28:54 navaraf Exp $
/* $Id: partlist.c,v 1.27 2004/08/15 22:29:50 chorns Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/partlist.c
@ -25,7 +25,7 @@
* Casper S. Hornstrup (chorns@users.sourceforge.net)
*/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ddk/ntddscsi.h>
#include <ntdll/rtl.h>

View file

@ -0,0 +1 @@
#include <ddk/ntddk.h>

View file

@ -1,7 +1,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ntdll/rtl.h>
#include "usetup.h"

View file

@ -26,7 +26,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ntdll/rtl.h>
#include <rosrtl/string.h>

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: settings.c,v 1.4 2004/06/20 12:14:23 ekohl Exp $
/* $Id: settings.c,v 1.5 2004/08/15 22:29:50 chorns Exp $
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS text-mode setup
* FILE: subsys/system/usetup/settings.c
@ -26,7 +26,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ntdll/rtl.h>
#include <ntos/minmax.h>

View file

@ -25,7 +25,8 @@
* Casper S. Hornstrup (chorns@users.sourceforge.net)
*/
#include <ddk/ntddk.h>
#include "precomp.h"
#include <ntdll/rtl.h>
#include <ntos/minmax.h>