mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
31 lines
720 B
C
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
|
|
}
|