Group: File System - Library: kernel32
Enumerating Volumes and Volume Mounting Points (NTFS)
BOOL FindNextVolumeMountPoint(
HANDLE hFindVolumeMountPoint,
LPTSTR lpszVolumeMountPoint,
DWORD cchBufferLength
); DECLARE INTEGER FindNextVolumeMountPoint IN kernel32;
INTEGER hFindVolumeMountPoint,;
STRING @lpszVolumeMountPoint,;
LONG cchBufferLength
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.
If the function succeeds, the return value is nonzero.
See also: FindVolumeMountPointClose.
Home