FindFirstVolumeMountPointW method
Implementation
ffi.Pointer<ffi.Void> FindFirstVolumeMountPointW(
ffi.Pointer<ffi.Uint16> lpszRootPathName,
ffi.Pointer<ffi.Uint16> lpszVolumeMountPoint,
int cchBufferLength,
) {
return (_FindFirstVolumeMountPointW ??= _dylib.lookupFunction<
_c_FindFirstVolumeMountPointW,
_dart_FindFirstVolumeMountPointW>('FindFirstVolumeMountPointW'))(
lpszRootPathName,
lpszVolumeMountPoint,
cchBufferLength,
);
}