Share via


EnumProjectsExCallback

The EnumProjectsExCallback function is an application-defined callback function that processes data from the EnumProjectsEx function. The PROJECTS_ENUMPROC_EX type defines a pointer to this callback 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 Values

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

Remarks

Use the EnumProjectsExCallback callback function to perform any operations within the enumerated folders — for example, to pass out the name of each folder 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

EnumProjectsEx

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.