Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. All rights reserved.
  4. Module Name:
  5. dbgsterm.hxx
  6. Abstract:
  7. Debug device serial terminal
  8. Author:
  9. Steve Kiraly (SteveKi) 7-Sep-1997
  10. Revision History:
  11. --*/
  12. #ifndef _DBGSTERM_HXX_
  13. #define _DBGSTERM_HXX_
  14. DEBUG_NS_BEGIN
  15. class TDebugDeviceSerialTerminal : public TDebugDevice {
  16. public:
  17. TDebugDeviceSerialTerminal::
  18. TDebugDeviceSerialTerminal(
  19. IN LPCTSTR pszConfiguration,
  20. IN EDebugType eDebugType
  21. );
  22. TDebugDeviceSerialTerminal::
  23. ~TDebugDeviceSerialTerminal(
  24. VOID
  25. );
  26. BOOL
  27. TDebugDeviceSerialTerminal::
  28. bValid(
  29. VOID
  30. );
  31. BOOL
  32. TDebugDeviceSerialTerminal::
  33. bOutput(
  34. IN UINT uSize,
  35. IN LPBYTE pBuffer
  36. );
  37. private:
  38. //
  39. // Copying and assignment are not defined.
  40. //
  41. TDebugDeviceSerialTerminal::
  42. TDebugDeviceSerialTerminal(
  43. const TDebugDeviceSerialTerminal &rhs
  44. );
  45. const TDebugDeviceSerialTerminal &
  46. TDebugDeviceSerialTerminal::
  47. operator=(
  48. const TDebugDeviceSerialTerminal &rhs
  49. );
  50. };
  51. DEBUG_NS_END
  52. #endif