1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /*++
- Copyright (c) 2013 Minoca Corp. All Rights Reserved
- Module Name:
- consio.h
- Abstract:
- This header contains definitions for standard input and output in the
- debugger.
- Author:
- Evan Green 30-Dec-2013
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // -------------------------------------------------------- Function Prototypes
- //
- INT
- DbgrInitializeConsoleIo (
- PDEBUGGER_CONTEXT Context
- );
- /*++
- Routine Description:
- This routine initializes console I/O for the debugger.
- Arguments:
- Context - Supplies a pointer to the debugger context.
- Return Value:
- 0 on success.
- Returns an error code on failure.
- --*/
- VOID
- DbgrDestroyConsoleIo (
- PDEBUGGER_CONTEXT Context
- );
- /*++
- Routine Description:
- This routine destroys console I/O for the debugger.
- Arguments:
- Context - Supplies a pointer to the debugger context.
- Return Value:
- None.
- --*/
|