// fwpsk.h
NTSTATUS FwpsAleEndpointGetSecurityInfo0(
[in] HANDLE engineHandle,
[in] SECURITY_INFORMATION securityInfo,
[out] PSID *sidOwner,
[out] PSID *sidGroup,
[out] PACL *dacl,
[out] PACL *sacl,
[out] PSECURITY_DESCRIPTOR *securityDescriptor
);
View the official Windows Driver Kit DDI referenceNo description available.
The FwpsAleEndpointGetSecurityInfo0 function retrieves security information about the application layer enforcement (ALE) endpoint enumeration session.
Note FwpsAleEndpointGetSecurityInfo0 is a specific version of FwpsAleEndpointGetSecurityInfo. See WFP Version-Independent Names and Targeting Specific Versions of Windows for more information.
engineHandle [in]A handle for an open session with the filter engine. This handle is obtained when a session is opened by calling FwpmEngineOpen0.
securityInfo [in]A set of security information flags. For more information, see the SECURITY_INFORMATION description in the Installable File Systems driver documentation.
sidOwner [out]The security identifier of the security owner.
sidGroup [out]The security identifier of the security group.
dacl [out]The discretionary access control list.
sacl [out]The system access control list.
securityDescriptor [out]The security descriptor structure.
The FwpsAleEndpointGetSecurityInfo0 function returns one of the following NTSTATUS codes.
| Return code | Description |
|---|---|
| STATUS_SUCCESS | The function succeeded. |
| Other status codes | An error occurred. |
FwpsAleEndpointSetSecurityInfo0