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
874 B

/******************************************************************************
*
* Copyright (c) 2000 Microsoft Corporation
*
* Module Name:
* findfile.h
*
* Abstract:
* Defintion of CFindFile.
*
* Revision History:
* Brijesh Krishnaswami (brijeshk) 03/17/2000
* created
*
*****************************************************************************/
#ifndef _FINDFILE_H_
#define _FINDFILE_H_
class CFindFile {
public:
ULONG m_ulCurID, m_ulMinID, m_ulMaxID;
BOOL m_fForward;
CFindFile();
BOOL _FindFirstFile(LPCWSTR pszPrefix, LPCWSTR pszSuffix, PWIN32_FIND_DATA pData, BOOL fForward, BOOL fSkipLast = FALSE);
BOOL _FindNextFile(LPCWSTR pszPrefix, LPCWSTR pszSuffix, PWIN32_FIND_DATA pData);
ULONG GetNextFileID(LPCWSTR pszPrefix, LPCWSTR pszSuffix);
};
#endif