Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LibcNativeInterop.cs 292B

123456789101112
  1. using System;
  2. using System.Runtime.InteropServices;
  3. using System.Text;
  4. namespace Packages.Rider.Editor.Util
  5. {
  6. internal static class LibcNativeInterop
  7. {
  8. [DllImport("libc", SetLastError = true)]
  9. public static extern IntPtr realpath(string path, StringBuilder resolved_path);
  10. }
  11. }