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
35 lines
767 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
|
//
|
|
// File: widiter.hxx
|
|
//
|
|
// Contents: Iterator over the workids for bucket->window conversion.
|
|
//
|
|
// Classes: PWorkIdIter
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 3-10-95 KyleP Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
class PWorkIdIter
|
|
{
|
|
public:
|
|
|
|
virtual ~PWorkIdIter() {};
|
|
|
|
virtual WORKID WorkId() = 0;
|
|
virtual WORKID NextWorkId() = 0;
|
|
|
|
virtual LONG Rank() = 0;
|
|
virtual LONG HitCount() = 0;
|
|
|
|
virtual WCHAR const * Path() = 0;
|
|
virtual unsigned PathSize() = 0;
|
|
};
|
|
|