EnumProjectsExCallback
4/8/2010
This function is an application-defined callback function that processes data from the EnumProjectsEx function. The PROJECTS_ENUMPROC_EX type defines a pointer to this function. EnumProjectsExCallback is a placeholder for the application-defined function name that you must implement.
Syntax
BOOL CALLBACK EnumProjectsExCallback(
PAstruct* pPA,
LPARAM lParam
);
Parameters
- pPA
[in] Reference to a PAstruct structure that contains information about the current project being enumerated.
- lParam
[in] Caller-defined parameter passed by EnumProjectsEx.
Return Value
Returns TRUE to continue the enumeration. Returns FALSE to stop the enumeration.
Remarks
Use this callback function to perform any operations within the enumerated folder, for example, to pass out the name of each folder, 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
EnumProjectsEx
PAstruct