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.

33 lines
941 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 2000 - 2000
  6. //
  7. // File: condoc.h
  8. //
  9. // This file defines interface to access document from node manager side
  10. //--------------------------------------------------------------------------
  11. #pragma once
  12. #if !defined(CONDOC_H_INCLUDED)
  13. #define CONDOC_H_INCLUDED
  14. /***************************************************************************\
  15. *
  16. * CLASS: CConsoleDocument
  17. *
  18. * PURPOSE: Defines interface to access document from node manager side
  19. *
  20. \***************************************************************************/
  21. class CConsoleDocument
  22. {
  23. public:
  24. virtual SC ScOnSnapinAdded (PSNAPIN pSnapIn) = 0;
  25. virtual SC ScOnSnapinRemoved (PSNAPIN pSnapIn) = 0;
  26. virtual SC ScSetHelpCollectionInvalid() = 0;
  27. };
  28. #endif // !defined(CONDOC_H_INCLUDED)