// wdbgexts.h
ULONG GetInputLine(
PCSTR Prompt,
PSTR Buffer,
ULONG BufferSize
);
View the official Windows Driver Kit DDI referenceNo description available.
The GetInputLine function requests an input string from the debugger.
PromptSpecifies a prompt to indicate what input is being requested. The prompt is printed to the debugger's output before the input is gathered. If Prompt is NULL, no prompt is printed.
BufferSpecifies the buffer to receive the input.
BufferSizeSpecifies the size, in characters, of the buffer Buffer.
GetInputLine returns the size, in characters, of the input returned to the Buffer buffer, or zero, if no input was returned.