mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
10 lines
212 B
C#
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();
|
|
}
|