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