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.
A version of this page is also available for
4/8/2010

This method opens an enumeration context for all databases in a mounted database volume on a remote Windows Embedded CE–based device.

Syntax

HANDLE CeFindFirstDatabaseEx(
  PCEGUID 
pceguid, 
  DWORD 
dwDbaseType 
);

Parameters

pceguid

[in] Pointer to the CEGUIDthat contains the globally unique identifier(GUID) 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 Embedded 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_VALUEindicates failure. To get extended error information, call IRAPISession::CeGetLastErrorand IRAPISession::CeRapiGetError. CeGetLastErrormay return ERROR_OUTOFMEMORYif 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 IRAPISession::CeFindNextDatabaseExmethod.

Remarks

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

Requirements

Header rapi2.h
Library ole32.lib, rapiuuid.lib
Windows Embedded CE Windows Embedded CE 6.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also