14 lines
405 B
C#
14 lines
405 B
C#
|
// Copyright 2016 Tom Deseyn <tom.deseyn@gmail.com>
|
||
|
// This software is made available under the MIT License
|
||
|
// See COPYING for details
|
||
|
|
||
|
using System.Diagnostics.CodeAnalysis;
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace InnovEnergy.Lib.Protocols.DBus;
|
||
|
|
||
|
[SuppressMessage("ReSharper", "IdentifierTypo")]
|
||
|
internal static class Interop
|
||
|
{
|
||
|
[DllImport("libc")] internal static extern UInt32 geteuid();
|
||
|
}
|