Remotely/Desktop.Native/Linux/Libc.cs
2024-07-16 09:11:32 -07:00

10 lines
212 B
C#

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