using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace Remotely.Desktop.Linux.Native { public class Libc { [DllImport("libc", SetLastError = true)] public static extern uint geteuid(); } }