FindNextVolumeMountPointW method

int FindNextVolumeMountPointW(
  1. Pointer<Void> hFindVolumeMountPoint,
  2. Pointer<Uint16> lpszVolumeMountPoint,
  3. int cchBufferLength
)

Implementation

int FindNextVolumeMountPointW(
  ffi.Pointer<ffi.Void> hFindVolumeMountPoint,
  ffi.Pointer<ffi.Uint16> lpszVolumeMountPoint,
  int cchBufferLength,
) {
  return (_FindNextVolumeMountPointW ??= _dylib.lookupFunction<
      _c_FindNextVolumeMountPointW,
      _dart_FindNextVolumeMountPointW>('FindNextVolumeMountPointW'))(
    hFindVolumeMountPoint,
    lpszVolumeMountPoint,
    cchBufferLength,
  );
}