FindNextVolume function kernel32
Continues a volume search started by a call to the FindFirstVolume function. FindNextVolume finds one volume per call.
BOOL FindNextVolumeW(
HANDLE hFindVolume,
LPWSTR lpszVolumeName,
DWORD cchBufferLength
);
Implementation
int FindNextVolume(
int hFindVolume,
Pointer<Utf16> lpszVolumeName,
int cchBufferLength,
) => _FindNextVolume(hFindVolume, lpszVolumeName, cchBufferLength);