Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
4/8/2010

This function continues a file search from a previous call to the FindFirstProjectFilefunction.

Syntax

BOOL FindNextProjectFile(
  HANDLE 
hHandle, 
  LPWIN32_FIND_DATA 
lpFindProjData 
);

Parameters

hHandle

[in] Handle to the first project file as returned by a previous call to FindFirstProjectFile.

lpFindProjData

[out] Long pointer to the WIN32_FIND_DATAstructure that receives information about the found file or subdirectory.

Return Value

TRUE indicates success. FALSE indicate failure. To get extended error information, call GetLastError. If no matching files are found, GetLastErrorreturns ERROR_NO_MORE_FILES.

Remarks

This function searches for files by name only; it cannot be used for attribute-based searches.

This function is the Windows Mobile replacement for the Windows Embedded CE function FindNextFile.

Requirements

Header projects.h
Library note_prj.lib
Windows Mobile Pocket PC 2000 and later, Smartphone 2002 and later

See Also