Microsoft Windows CE 3.0  

CeFindFirstDatabaseEx (RAPI)

Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

This function opens an enumeration context for all databases in a database volume. CeFindFirstDatabaseEx (RAPI)is a remote application interface, which enables an application running on a desktop computer to make function calls on a Windows CE–based device.

HANDLE CeFindFirstDatabaseEx(
PCEGUID
pceguid
,

DWORD
dwDbaseType
);

Parameters

pceguid
[in] Pointer to the CEGUIDthat contains the globally unique identifier of a mounted database volume. If pceguidis NULL or set to an invalid GUID, then all mounted database volumes are searched.
dwDbaseType
[in] Specifies the type identifier of the databases to enumerate. If this parameter is zero, all databases are enumerated in the volume. For Windows CE-based devices, a volume is the object store or a mounted database volume.

Return Values

A handle to an enumeration context indicates success. INVALID_HANDLE_VALUE indicates failure. To get extended error information, call CeGetLastError. CeGetLastErrormay return ERROR_OUTOFMEMORY if no memory is available to allocate a database handle.

To find all the databases of the desired type, specify the enumeration context handle in multiple calls to the CeFindNextDatabaseExfunction.

Remarks

This function only returns the handle to an enumeration context. To begin enumerating databases, an application must call the CeFindNextDatabaseEx (RAPI)function. When an application is done with the handle to the enumeration context, an application uses CeCloseHandleto release the resources associated with the enumeration context.

Requirements

Runs On Versions Defined in Include Link to
Windows CE OS 2.10 and later Rapi.h    

See Also

CeCloseHandle (RAPI), CeFindNextDatabaseEx (RAPI), CeGetLastError, CREATE_INVALIDGUID