Group: File System - Library: kernel32
Enumerating Volumes and Volume Mounting Points (NTFS)
BOOL FindNextVolume(
HANDLE hFindVolume,
LPTSTR lpszVolumeName,
DWORD cchBufferLength
);
DECLARE INTEGER FindNextVolume IN kernel32;
INTEGER hFindVolume,;
STRING @lpszVolumeName,;
LONG cchBufferLength hFindVolume [in] Volume search handle returned by a previous call to the FindFirstVolume function.
lpszVolumeName [out] Pointer to a string that receives the unique volume name found.
cchBufferLength [in] Length of the buffer that receives the name, in TCHARs.
If the function succeeds, the return value is nonzero.
See also: FindFirstVolume, FindVolumeClose, FindFirstVolumeMountPoint, GetVolumeInformation.
Home