using System.Runtime.InteropServices; namespace Developpez.Dotnet.System.Providers.Windows { /// /// Infrastructure (Interop) /// [StructLayout(LayoutKind.Sequential)] internal struct TOKEN_PRIVILEGES { public int PrivilegeCount; public LUID Luid; public int Attributes; } }