Commit 25f3ba3e authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

include: Correct conflicting definition of PSECURITY_DESCRIPTOR.

In the Windows SDK, PSECURITY_DESCRIPTOR is void* and PISECURITY_DESCRIPTOR is SECURITY_DESCRIPTOR*. PSECURITY_DESCRIPTOR is defined in winnt.h and PISECURITY_DESCRIPTOR is defined in wbasetypes.idl.
parent 0369223f
......@@ -133,7 +133,7 @@ typedef struct _SECURITY_DESCRIPTOR {
PSID Group;
PACL Sacl;
PACL Dacl;
} SECURITY_DESCRIPTOR, *PSECURITY_DESCRIPTOR;
} SECURITY_DESCRIPTOR, *PISECURITY_DESCRIPTOR;
typedef struct _SECURITY_ATTRIBUTES
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment