reactos/ntoskrnl/kd/wrappers/kdbg.c
Timo Kreuzer 6afbc8f483 Hopefully create a branch and not destroy the svn repository.
svn path=/branches/reactos-yarotows/; revision=45219
2010-01-23 23:25:04 +00:00

31 lines
720 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/kd/wrappers/kdbg.c
* PURPOSE: KDBG Wrapper for Kd
*
* PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
*/
#include <ntoskrnl.h>
#define NDEBUG
#include <debug.h>
VOID NTAPI
KdbInitialize(PKD_DISPATCH_TABLE DispatchTable, ULONG BootPhase);
/* FUNCTIONS *****************************************************************/
VOID
NTAPI
KdpKdbgInit(PKD_DISPATCH_TABLE DispatchTable,
ULONG BootPhase)
{
#ifdef KDBG
/* Forward the call */
KdbInitialize(DispatchTable, BootPhase);
#else
/* When KDBG is disabled, it is not used/initialized at all */
#endif
}