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.

35 lines
767 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. //
  6. // File: widiter.hxx
  7. //
  8. // Contents: Iterator over the workids for bucket->window conversion.
  9. //
  10. // Classes: PWorkIdIter
  11. //
  12. // Functions:
  13. //
  14. // History: 3-10-95 KyleP Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #pragma once
  18. class PWorkIdIter
  19. {
  20. public:
  21. virtual ~PWorkIdIter() {};
  22. virtual WORKID WorkId() = 0;
  23. virtual WORKID NextWorkId() = 0;
  24. virtual LONG Rank() = 0;
  25. virtual LONG HitCount() = 0;
  26. virtual WCHAR const * Path() = 0;
  27. virtual unsigned PathSize() = 0;
  28. };