[NTOS:KD] Fix build, addendum to commit f3dd7133.

This one was more subtle because the prompt (KdIoReadLine) functionality
makes a call-back to KDBG own command history getter function KdbGetHistoryEntry.
It is planned for this to become a registered optional callback pointer.
This commit is contained in:
Hermès Bélusca-Maïto 2023-03-29 03:36:24 +02:00
parent 3c0ba6b22c
commit 1bb4167211
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -13,6 +13,24 @@
#include "kd.h"
#include "kdterminal.h"
/* In kdb.h only when KDBG defined */
#ifdef KDBG
extern PCSTR
KdbGetHistoryEntry(
_Inout_ PLONG NextIndex,
_In_ BOOLEAN Next);
#else
PCSTR
KdbGetHistoryEntry(
_Inout_ PLONG NextIndex,
_In_ BOOLEAN Next)
{
/* Dummy function */
return NULL;
}
#endif
/* FUNCTIONS *****************************************************************/
/**