mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
844 B
54 lines
844 B
|
|
|
|
DWORD
|
|
PerformAudit(
|
|
DWORD dwCategoryId,
|
|
DWORD dwAuditId,
|
|
PSID pSid,
|
|
DWORD dwParamCnt,
|
|
LPWSTR * ppszArgArray,
|
|
BOOL bSuccess,
|
|
BOOL bDoAudit
|
|
);
|
|
|
|
VOID
|
|
AuditEvent(
|
|
DWORD dwCategoryId,
|
|
DWORD dwAuditId,
|
|
DWORD dwStrId,
|
|
LPWSTR * ppszArguments,
|
|
BOOL bSuccess,
|
|
BOOL bDoAudit
|
|
);
|
|
|
|
VOID
|
|
AuditOneArgErrorEvent(
|
|
DWORD dwCategoryId,
|
|
DWORD dwAuditId,
|
|
DWORD dwStrId,
|
|
DWORD dwErrorCode,
|
|
BOOL bSuccess,
|
|
BOOL bDoAudit
|
|
);
|
|
|
|
VOID
|
|
AuditIPSecPolicyEvent(
|
|
DWORD dwCategoryId,
|
|
DWORD dwAuditId,
|
|
DWORD dwStrId,
|
|
LPWSTR pszPolicyName,
|
|
BOOL bSuccess,
|
|
BOOL bDoAudit
|
|
);
|
|
|
|
VOID
|
|
AuditIPSecPolicyErrorEvent(
|
|
DWORD dwCategoryId,
|
|
DWORD dwAuditId,
|
|
DWORD dwStrId,
|
|
LPWSTR pszPolicyName,
|
|
DWORD dwErrorCode,
|
|
BOOL bSuccess,
|
|
BOOL bDoAudit
|
|
);
|
|
|