Skip to content

Latest commit

 

History

History
58 lines (39 loc) · 1.31 KB

File metadata and controls

58 lines (39 loc) · 1.31 KB

Home

Function name : FindNextVolumeMountPoint

Group: File System - Library: kernel32


Continues a volume mount point search started by a call to the FindFirstVolumeMountPoint function.


Code examples:

Enumerating Volumes and Volume Mounting Points (NTFS)

Declaration:

BOOL FindNextVolumeMountPoint(
	HANDLE hFindVolumeMountPoint,
	LPTSTR lpszVolumeMountPoint,
	DWORD cchBufferLength
);  

FoxPro declaration:

DECLARE INTEGER FindNextVolumeMountPoint IN kernel32;
	INTEGER hFindVolumeMountPoint,;
	STRING @lpszVolumeMountPoint,;
	LONG cchBufferLength
  

Parameters:

hFindVolumeMountPoint [in] Mount-point search handle returned by a previous call to the FindFirstVolumeMountPoint function.

lpszVolumeMountPoint [out] Pointer to a string that receives the name of the volume mount point found.

cchBufferLength [in] Length of the buffer that receives the names, in TCHARs.


Return value:

If the function succeeds, the return value is nonzero.


Comments:

See also: FindVolumeMountPointClose.