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

  1. /******************************************************************************
  2. *
  3. * Copyright (c) 2000 Microsoft Corporation
  4. *
  5. * Module Name:
  6. * findfile.h
  7. *
  8. * Abstract:
  9. * Defintion of CFindFile.
  10. *
  11. * Revision History:
  12. * Brijesh Krishnaswami (brijeshk) 03/17/2000
  13. * created
  14. *
  15. *****************************************************************************/
  16. #ifndef _FINDFILE_H_
  17. #define _FINDFILE_H_
  18. class CFindFile {
  19. public:
  20. ULONG m_ulCurID, m_ulMinID, m_ulMaxID;
  21. BOOL m_fForward;
  22. CFindFile();
  23. BOOL _FindFirstFile(LPCWSTR pszPrefix, LPCWSTR pszSuffix, PWIN32_FIND_DATA pData, BOOL fForward, BOOL fSkipLast = FALSE);
  24. BOOL _FindNextFile(LPCWSTR pszPrefix, LPCWSTR pszSuffix, PWIN32_FIND_DATA pData);
  25. ULONG GetNextFileID(LPCWSTR pszPrefix, LPCWSTR pszSuffix);
  26. };
  27. #endif