Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.12 KB

CeEnumDBVolumes.md

File metadata and controls

51 lines (36 loc) · 1.12 KB

Home

Function name : CeEnumDBVolumes

Group: Remote Application Programming (RAPI) - Library: rapi


This function enumerates all mounted database volumes and returns the name for each.


Code examples:

Pocket PC: custom RAPI class for operating with the Object Store Databases

Declaration:

BOOL CeEnumDBVolumes(
  PCEGUID pceguid,
  LPWSTR lpBuf,
  DWORD dwNumChars
);  

FoxPro declaration:

DECLARE INTEGER CeEnumDBVolumes IN rapi;
	STRING  @ pceguid,;
	STRING  @ lpBuf,;
	INTEGER   dwNumChars  

Parameters:

pceguid [in] To begin enumeration, set this parameter to the value returned by CREATE_INVALIDGUID.

lpBuf [out] Pointer to the allocated buffer that receives the database volume names.

dwNumChars [in] Specifies the length, in characters, of the buffer.


Return value:

TRUE indicates success. FALSE indicates failure.