PRJ_ENUM
The PRJ_ENUM enumeration defines the set of flags that determine which files to enumerate. These flags are used in the dwFlags parameter of the following functions:
- EnumProjects (Pocket PCs)
- EnumProjectsFiles (Pocket PCs)
- EnumProjectsEx (Pocket PCs and Smartphones)
- EnumProjectsFilesEx (Pocket PCs and Smartphones)
Syntax
typedef enum tagENUM {
PRJ_ENUM_MEMORY = 0x1,
PRJ_ENUM_FLASH = 0x2,
PRJ_ENUM_ALL_DEVICES = 0x4,
PRJ_ENUM_ALL_PROJ = 0x10,
PRJ_ENUM_HOME_PROJ = 0x100
} PRJ_ENUM;
Enumerators
- PRJ_ENUM_MEMORY
Enumerates main memory projects only. - PRJ_ENUM_FLASH
Enumerates flash card projects only. - PRJ_ENUM_ALL_DEVICES
Enumerates main memory and flash card projects. - PRJ_ENUM_ALL_PROJ
Enumerates in all projects. - PRJ_ENUM_HOME_PROJ
Adds My Documents home folder.
Remarks
PRJ_ENUM is not used as a typical enumeration. It is used only as a container of flags.
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 | EnumProjectsFilesEx | File and Application Management Enumerations
Send Feedback on this topic to the authors