Remotely/Desktop.Native/Linux/Libc.cs
2024-07-16 09:25:15 -07:00

10 lines
199 B
C#

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