LibcNativeInterop.cs 292 B

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. }