Missing metadata for SECURITY_MAX_SID_SIZE. Fixed #1721.

This commit is contained in:
Mike Battista 2024-02-15 12:52:42 -08:00
Родитель 83357764ba
Коммит 928dbce9ed
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -12,6 +12,8 @@ namespace Windows.Win32.Security
[NativeTypeName("BOOLEAN")]
public const byte SECURITY_STATIC_TRACKING = 0;
public const uint SECURITY_MAX_SID_SIZE = 68;
[Constant("{0, 0, 0, 0, 0, 0}")]
public static readonly SID_IDENTIFIER_AUTHORITY SECURITY_NULL_SID_AUTHORITY;
[Constant("{0, 0, 0, 0, 0, 1}")]

Просмотреть файл

@ -126,3 +126,5 @@ Windows.Win32.Security.Cryptography.Apis.CERT_SYSTEM_STORE_CURRENT_USER added
Windows.Win32.Security.Cryptography.Apis.CERT_SYSTEM_STORE_LOCAL_MACHINE added
# Fixed #1846.
Windows.Win32.UI.WindowsAndMessaging.Apis.GetSystemMetrics : [DllImport(USER32.dll,ExactSpelling=True,PreserveSig=False,SetLastError=True),Documentation(https://learn.microsoft.com/windows/win32/api/winuser/nf-winuser-getsystemmetrics),SupportedOSPlatform(windows5.0)] => [DllImport(USER32.dll,ExactSpelling=True,PreserveSig=False),Documentation(https://learn.microsoft.com/windows/win32/api/winuser/nf-winuser-getsystemmetrics),SupportedOSPlatform(windows5.0)]
# Fixed #1721.
Windows.Win32.Security.Apis.SECURITY_MAX_SID_SIZE added