EnumProjectsExCallback

Send Feedback

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

Pocket PC: Pocket PC 2000 and later
Smartphone: Smartphone 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 Functions | PAstruct

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.