Remotely/Desktop.Native/Linux/Libc.cs
2024-10-21 11:53:41 -07:00

10 lines
192 B
C#

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