Remotely/Desktop.XPlat/Native/Linux/Libc.cs
2021-07-29 07:58:06 -07:00

16 lines
336 B
C#

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