| Debugging Tools for Windows | 
The Input and InputWide methods request an input string from the debugger engine.
HRESULT
  IDebugControl::Input(
    OUT PSTR  Buffer,
    IN ULONG  BufferSize,
    OUT OPTIONAL PULONG  InputSize
    );
HRESULT
  IDebugControl4::InputWide(
    OUT PWSTR  Buffer,
    IN ULONG  BufferSize,
    OUT OPTIONAL PULONG  InputSize
    );
#ifdef UNICODE
#define InputT InputWide
#else
#define InputT Input
#endif
This method may also return error values. See Return Values for more details.
Input is available in all versions of IDebugControl. InputWide is available in IDebugControl4 and later versions.
For an overview of input in the debugger engine, see Input and Output.
Headers: Defined in Dbgeng.h. Include Dbgeng.h.