include: Correct conflicting definition of PSID.

In the Windows SDK, PSID is void* and PISID is SID*. Both types are
defined in both winnt.h and wtypesbase.idl.
This commit is contained in:
Alex Henrie 2023-09-27 19:40:20 -06:00 committed by Alexandre Julliard
parent 65261f3c80
commit 0369223f73

View file

@ -110,7 +110,9 @@ typedef struct _SID {
UCHAR SubAuthorityCount;
SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
[size_is(SubAuthorityCount)] ULONG SubAuthority[*];
} SID, *PSID;
} SID, *PISID;
typedef void *PSID;
typedef USHORT SECURITY_DESCRIPTOR_CONTROL, *PSECURITY_DESCRIPTOR_CONTROL;