From 2e1e2b79686996666d83ffdeaf751f59aa48b8b3 Mon Sep 17 00:00:00 2001 From: Robert Dickenson Date: Sun, 10 Nov 2002 14:00:41 +0000 Subject: [PATCH] added #ifdef around headers to support private test build. svn path=/trunk/; revision=3732 --- reactos/ntoskrnl/cm/import.c | 6 +++++- reactos/ntoskrnl/cm/ntfunc.c | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/cm/import.c b/reactos/ntoskrnl/cm/import.c index 44839098f91..b9ca0f4ee31 100644 --- a/reactos/ntoskrnl/cm/import.c +++ b/reactos/ntoskrnl/cm/import.c @@ -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 * PROJECT: ReactOS kernel @@ -7,6 +7,9 @@ * PROGRAMMERS: Rex Jolliff */ +#ifdef WIN32_REGDBG +#include "cm_win32.h" +#else #include #include @@ -21,6 +24,7 @@ #include #include "cm.h" +#endif static PCHAR checkAndSkipMagic (PCHAR regChunk) diff --git a/reactos/ntoskrnl/cm/ntfunc.c b/reactos/ntoskrnl/cm/ntfunc.c index a419b7439c1..302a818f0bb 100644 --- a/reactos/ntoskrnl/cm/ntfunc.c +++ b/reactos/ntoskrnl/cm/ntfunc.c @@ -8,6 +8,9 @@ /* INCLUDES *****************************************************************/ +#ifdef WIN32_REGDBG +#include "cm_win32.h" +#else #include #include #include @@ -20,6 +23,7 @@ #include #include "cm.h" +#endif /* GLOBALS ******************************************************************/