added #ifdef around headers to support private test build.

svn path=/trunk/; revision=3732
This commit is contained in:
Robert Dickenson 2002-11-10 14:00:41 +00:00
parent 68c82b15c9
commit 2e1e2b7968
2 changed files with 9 additions and 1 deletions

View file

@ -1,4 +1,4 @@
/* $Id: import.c,v 1.9 2002/10/20 13:55:09 robd Exp $ /* $Id: import.c,v 1.10 2002/11/10 14:00:41 robd Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -7,6 +7,9 @@
* PROGRAMMERS: Rex Jolliff * PROGRAMMERS: Rex Jolliff
*/ */
#ifdef WIN32_REGDBG
#include "cm_win32.h"
#else
#include <ctype.h> #include <ctype.h>
#include <ddk/ntddk.h> #include <ddk/ntddk.h>
@ -21,6 +24,7 @@
#include <internal/debug.h> #include <internal/debug.h>
#include "cm.h" #include "cm.h"
#endif
static PCHAR static PCHAR
checkAndSkipMagic (PCHAR regChunk) checkAndSkipMagic (PCHAR regChunk)

View file

@ -8,6 +8,9 @@
/* INCLUDES *****************************************************************/ /* INCLUDES *****************************************************************/
#ifdef WIN32_REGDBG
#include "cm_win32.h"
#else
#include <ddk/ntddk.h> #include <ddk/ntddk.h>
#include <roscfg.h> #include <roscfg.h>
#include <internal/ob.h> #include <internal/ob.h>
@ -20,6 +23,7 @@
#include <internal/debug.h> #include <internal/debug.h>
#include "cm.h" #include "cm.h"
#endif
/* GLOBALS ******************************************************************/ /* GLOBALS ******************************************************************/