mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 15:51:49 +00:00
[NTOS:KD] Remove some _WINDK_ usages
- Always include kd64.h - Change KdpPrompt() prototype to be compatible between KDBG and _WINDK_ - Rename KdComponentTable to KdpComponentTable to prevent a conflict - Add some functions stubs and global variables
This commit is contained in:
parent
f5e962ff2e
commit
f7ec84eea0
8 changed files with 31 additions and 33 deletions
|
@ -3672,14 +3672,16 @@ KdpSerialDebugPrint(
|
|||
STRING KdpPromptString = RTL_CONSTANT_STRING("kdb:> ");
|
||||
extern KSPIN_LOCK KdpSerialSpinLock;
|
||||
|
||||
ULONG
|
||||
USHORT
|
||||
NTAPI
|
||||
KdpPrompt(
|
||||
_In_reads_bytes_(InStringLength) PCHAR UnsafeInString,
|
||||
_In_ USHORT InStringLength,
|
||||
_Out_writes_bytes_(OutStringLength) PCHAR UnsafeOutString,
|
||||
_In_ USHORT OutStringLength,
|
||||
_In_ KPROCESSOR_MODE PreviousMode)
|
||||
_In_ KPROCESSOR_MODE PreviousMode,
|
||||
_In_ PKTRAP_FRAME TrapFrame,
|
||||
_In_ PKEXCEPTION_FRAME ExceptionFrame)
|
||||
{
|
||||
USHORT i;
|
||||
CHAR Response;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue