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.

28 lines
670 B

  1. /*--------------------------------------------------------------------------*
  2. *
  3. * Microsoft Windows
  4. * Copyright (C) Microsoft Corporation, 1999 - 1999
  5. *
  6. * File: contree.h
  7. *
  8. * Contents: Interface file for CConsoleTree
  9. *
  10. * History: 24-Aug-99 jeffro Created
  11. *
  12. *--------------------------------------------------------------------------*/
  13. #ifndef CONTREE_H
  14. #define CONTREE_H
  15. #pragma once
  16. class CConsoleTree
  17. {
  18. public:
  19. virtual SC ScSetTempSelection (HTREEITEM htiSelected) = 0;
  20. virtual SC ScRemoveTempSelection () = 0;
  21. virtual SC ScReselect () = 0;
  22. };
  23. #endif /* CONTREE_H */