Group: Remote Application Programming (RAPI) - Library: rapi
Pocket PC: custom RAPI class for operating with the Object Store Databases
CEOID CeFindNextDatabaseEx(
HANDLE hEnum,
PCEGUID pceguid
); DECLARE INTEGER CeFindNextDatabaseEx IN rapi;
INTEGER hEnum,;
STRING @ pceguid hEnum [in] Handle returned from CeFindFirstDatabaseEx.
pceguid [in] Pointer to the CEGUID that contains the globally unique identifier of a mounted database.
A valid CEOID indicates success. Zero indicates failure or a lack of additional databases.
To find all matching databases, CeFindNextDatabaseEx (RAPI) is called in a loop until 0 is returned. When enumeration is complete, the hEnum handle must be closed by calling the CeCloseHandle (RAPI) function.
See also: CeFindFirstDatabaseEx.
Home