CeFindFirstDatabaseEx

This function opens an enumeration context for all databases in a database volume.

A RAPI version of this function exists named CeFindFirstDatabaseEx (RAPI).

HANDLE CeFindFirstDatabaseEx( 
  PCEGUID pceguid, 
  DWORD dwDbaseType
);

Parameters

  • pceguid
    [in] Pointer to the CEGUID that contains the globally unique identifier of a mounted database volume. If pceguid is NULL or set to an invalid GUID, then all mounted database volumes are searched.
  • dwDbaseType
    [in] 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 GetLastError. GetLastError may return ERROR_OUTOFMEMORY if no memory is available to allocate an enumeration context handle.

Remarks

This function only returns the handle to a enumeration context. To begin enumerating databases, an application must call the CeFindNextDatabaseEx function. When an application is done with the handle to the enumeration context, an application uses CloseHandle to release the resources associated with the enumeration context. To find the databases of the desired type, specify the enumeration context handle in multiple calls to the CeFindNextDatabaseEx function.

Requirements

OS Versions: Windows CE 2.10 and later.
Header: Windbase.h.
Link Library: Coredll.lib.

See Also

CeFindNextDatabaseEx | CloseHandle | CREATE_INVALIDGUID

 Last updated on Friday, April 09, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.