Share via


EnumProjectsFilesExCallback

The EnumProjectsFilesExCallback 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 Values

Return TRUE to continue the enumeration, or return FALSE to stop the enumeration.

Remarks

Use the EnumProjectsFilesExCallback callback function to perform any operations within the enumerated folders — for example, to pass out the name of each file and then display all these names in a dialog box.

Requirements

Smartphone: Windows Mobile 2002 and later
OS Versions: Windows CE 3.0 and later
Header: projects.h
Library: note_prj.lib

See Also

EnumProjectsFilesEx

File and Application Management API Functions

PAstruct

Last updated on Friday, April 22, 2005

© 2005 Microsoft Corporation. All rights reserved.

Send feedback on this topic to the authors.