mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 02:58:48 +00:00
[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:
parent
2898ae10b1
commit
bb58aed9b1
2 changed files with 13 additions and 1 deletions
|
@ -127,7 +127,7 @@ typedef struct _SEP_AUDIT_POLICY_CATEGORIES
|
||||||
typedef struct _SEP_AUDIT_POLICY_OVERLAY
|
typedef struct _SEP_AUDIT_POLICY_OVERLAY
|
||||||
{
|
{
|
||||||
ULONGLONG PolicyBits:36;
|
ULONGLONG PolicyBits:36;
|
||||||
UCHAR SetBit:1;
|
ULONGLONG SetBit:1;
|
||||||
} SEP_AUDIT_POLICY_OVERLAY, *PSEP_AUDIT_POLICY_OVERLAY;
|
} SEP_AUDIT_POLICY_OVERLAY, *PSEP_AUDIT_POLICY_OVERLAY;
|
||||||
|
|
||||||
typedef struct _SEP_AUDIT_POLICY
|
typedef struct _SEP_AUDIT_POLICY
|
||||||
|
|
|
@ -57,6 +57,18 @@ extern "C" {
|
||||||
#define SECURITY_ACCESS_REMOTE_INTERACTIVE_LOGON 0x00000400
|
#define SECURITY_ACCESS_REMOTE_INTERACTIVE_LOGON 0x00000400
|
||||||
#define SECURITY_ACCESS_DENY_REMOTE_INTERACTIVE_LOGON 0x00000800
|
#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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue