[PSDK] Add POLICY_AUDIT_EVENT_TYPE to ntlsa.h

[NDK] Fix definition of SEP_AUDIT_POLICY_OVERLAY

svn path=/trunk/; revision=62104
This commit is contained in:
Timo Kreuzer 2014-02-10 17:29:50 +00:00
parent 2898ae10b1
commit bb58aed9b1
2 changed files with 13 additions and 1 deletions

View file

@ -127,7 +127,7 @@ typedef struct _SEP_AUDIT_POLICY_CATEGORIES
typedef struct _SEP_AUDIT_POLICY_OVERLAY
{
ULONGLONG PolicyBits:36;
UCHAR SetBit:1;
ULONGLONG SetBit:1;
} SEP_AUDIT_POLICY_OVERLAY, *PSEP_AUDIT_POLICY_OVERLAY;
typedef struct _SEP_AUDIT_POLICY

View file

@ -57,6 +57,18 @@ extern "C" {
#define SECURITY_ACCESS_REMOTE_INTERACTIVE_LOGON 0x00000400
#define SECURITY_ACCESS_DENY_REMOTE_INTERACTIVE_LOGON 0x00000800
typedef enum _POLICY_AUDIT_EVENT_TYPE
{
AuditCategorySystem,
AuditCategoryLogon,
AuditCategoryObjectAccess,
AuditCategoryPrivilegeUse,
AuditCategoryDetailedTracking,
AuditCategoryPolicyChange,
AuditCategoryAccountManagement,
AuditCategoryDirectoryServiceAccess,
AuditCategoryAccountLogon
} POLICY_AUDIT_EVENT_TYPE, *PPOLICY_AUDIT_EVENT_TYPE;
#ifdef __cplusplus
}