Leaked source code of windows server 2003
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.

63 lines
681 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. iohandler.cpp
  5. Abstract:
  6. This module implements the base IoHandler class.
  7. Author:
  8. Brian Guarraci (briangu), 2001
  9. Revision History:
  10. --*/
  11. #include "iohandler.h"
  12. CIoHandler::CIoHandler(
  13. VOID
  14. )
  15. /*++
  16. Routine Description:
  17. IoHandler constructor
  18. Arguments:
  19. None
  20. Return Value:
  21. N/A
  22. --*/
  23. {
  24. NOTHING;
  25. }
  26. CIoHandler::~CIoHandler()
  27. /*++
  28. Routine Description:
  29. IoHandler destructor
  30. Arguments:
  31. N/A
  32. Return Value:
  33. N/A
  34. --*/
  35. {
  36. NOTHING;
  37. }