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.
 
 
 
 
 
 

48 lines
1.0 KiB

//+--------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1991 - 1992.
//
// File: iter.hxx
//
// Contents: CDocFileIterator header file
//
// Classes: CDocFileIterator
//
//---------------------------------------------------------------
#ifndef __ITER_HXX__
#define __ITER_HXX__
#include "h/piter.hxx"
class CMSFIterator;
class CStgHandle;
//+--------------------------------------------------------------
//
// Class: CDocFileIterator (dfi)
//
// Purpose: Derive a new iterator that remembers what DocFile it
// came from
//
// Interface: Same as PDocFileIterator
//
//---------------------------------------------------------------
class CDocFileIterator : public PDocFileIterator
{
public:
CDocFileIterator(void);
SCODE Init(CStgHandle *ph);
~CDocFileIterator(void);
virtual SCODE GetNext(STATSTGW *pstatstg);
virtual SCODE BufferGetNext(SIterBuffer *pib);
virtual void Release(void);
private:
CMSFIterator *_pi;
};
#endif