1
0

consio.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*++
  2. Copyright (c) 2013 Minoca Corp.
  3. This file is licensed under the terms of the GNU General Public License
  4. version 3. Alternative licensing terms are available. Contact
  5. info@minocacorp.com for details. See the LICENSE file at the root of this
  6. project for complete licensing information.
  7. Module Name:
  8. consio.h
  9. Abstract:
  10. This header contains definitions for standard input and output in the
  11. debugger.
  12. Author:
  13. Evan Green 30-Dec-2013
  14. --*/
  15. //
  16. // ------------------------------------------------------------------- Includes
  17. //
  18. //
  19. // ---------------------------------------------------------------- Definitions
  20. //
  21. //
  22. // ------------------------------------------------------ Data Type Definitions
  23. //
  24. //
  25. // -------------------------------------------------------------------- Globals
  26. //
  27. //
  28. // -------------------------------------------------------- Function Prototypes
  29. //
  30. INT
  31. DbgrInitializeConsoleIo (
  32. PDEBUGGER_CONTEXT Context
  33. );
  34. /*++
  35. Routine Description:
  36. This routine initializes console I/O for the debugger.
  37. Arguments:
  38. Context - Supplies a pointer to the debugger context.
  39. Return Value:
  40. 0 on success.
  41. Returns an error code on failure.
  42. --*/
  43. VOID
  44. DbgrDestroyConsoleIo (
  45. PDEBUGGER_CONTEXT Context
  46. );
  47. /*++
  48. Routine Description:
  49. This routine destroys console I/O for the debugger.
  50. Arguments:
  51. Context - Supplies a pointer to the debugger context.
  52. Return Value:
  53. None.
  54. --*/