FindFirstVolumeW method

Pointer<Void> FindFirstVolumeW(
  1. Pointer<Uint16> lpszVolumeName,
  2. int cchBufferLength
)

Implementation

ffi.Pointer<ffi.Void> FindFirstVolumeW(
  ffi.Pointer<ffi.Uint16> lpszVolumeName,
  int cchBufferLength,
) {
  return (_FindFirstVolumeW ??=
      _dylib.lookupFunction<_c_FindFirstVolumeW, _dart_FindFirstVolumeW>(
          'FindFirstVolumeW'))(
    lpszVolumeName,
    cchBufferLength,
  );
}