FindFirstVolumeMountPointW method

Pointer<Void> FindFirstVolumeMountPointW(
  1. Pointer<Uint16> lpszRootPathName,
  2. Pointer<Uint16> lpszVolumeMountPoint,
  3. int cchBufferLength
)

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