FindNextVolume function kernel32

int FindNextVolume(
  1. int hFindVolume,
  2. Pointer<Utf16> lpszVolumeName,
  3. int cchBufferLength
)

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);