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.
|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1991 - 1996.
//
// File: msfiter.hxx
//
// Contents: Definitions for iterator objects
//
// Classes: CMSFIterator - Main iterator class for MSF
//
// Functions: None.
//
//--------------------------------------------------------------------------
#ifndef __MSFITER_HXX__
#define __MSFITER_HXX__
#include "msf.hxx"
class CDirectory;
//+-------------------------------------------------------------------------
//
// Class: CMSFIterator
//
// Purpose: Iterator object provided by multi-stream
//
// Interface: See below
//
//--------------------------------------------------------------------------
class CMSFIterator { public: inline CMSFIterator(CDirectory *pdir, SID sidChild); SCODE GetNext(STATSTGW *pstat); SCODE BufferGetNext(SIterBuffer *pib); inline SCODE Rewind(VOID);
inline void Release(VOID);
private: CDirectory *_pdir; SID _sidChildRoot; CDfName _dfnCurrent; };
inline CMSFIterator::CMSFIterator(CDirectory *pdir, SID sidChild) { _pdir = pdir; _sidChildRoot = sidChild; }
//+-------------------------------------------------------------------------
//
// Member: CMSFIterator::Rewind, public
//
// Synposis: Reset iterator to first position.
//
// Effects: Modifies _sidCurrent
//
// Arguments: Void.
//
// Returns: S_OK
//
// Notes:
//
//---------------------------------------------------------------------------
inline SCODE CMSFIterator::Rewind(VOID) { msfDebugOut((DEB_TRACE,"In CMSFIterator::Rewind()\n")); _dfnCurrent.Set((WORD)0, (BYTE *)NULL); msfDebugOut((DEB_TRACE,"Leaving CMSFIterator::Rewind()\n")); return S_OK; }
//+-------------------------------------------------------------------------
//
// Method: CMSFIterator::Release, public
//
// Synopsis: Release this MSFIterator instance
//
// Arguments: None.
//
// Returns: Void.
//
//--------------------------------------------------------------------------
inline void CMSFIterator::Release(VOID) { delete this; }
#endif //__MSFITER_HXX__
|