Remotely/Desktop.Linux/Native/Libc.cs

16 lines
330 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.Linux.Native
{
public class Libc
{
[DllImport("libc", SetLastError = true)]
public static extern uint geteuid();
}
}