EnumProjectsFilesExCallback
4/8/2010
This function is an application-defined callback function that processes data from the EnumProjectsFilesEx function. The PROJECTSFILES_ENUMPROC_EX type defines a pointer to this callback function. EnumProjectsFilesExCallback is a placeholder for the application-defined function name that you must implement.
Syntax
BOOL CALLBACK EnumProjectsFilesExCallback(
PAstruct* pPA,
LPARAM lParam
);
Parameters
- pPA
[in] Reference to a PAstruct structure that contains information about the current file being enumerated.
- lParam
[in] Caller-defined parameter passed by EnumProjectsFilesEx.
Return Value
Returns TRUE to continue the enumeration. Returns FALSE to stop the enumeration.
Remarks
Use this callback function to perform any operations in the enumerated folders, for example, to pass the name of each file, and then display all these names in a dialog box.
Requirements
Header | projects.h |
Library | note_prj.lib |
Windows Mobile | Pocket PC 2000 and later, Smartphone 2002 and later |
See Also
Reference
File and Application Management Functions
EnumProjectsFilesEx
PAstruct