Source code of Windows XP (NT5)
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

  1. DWORD
  2. PerformAudit(
  3. DWORD dwCategoryId,
  4. DWORD dwAuditId,
  5. PSID pSid,
  6. DWORD dwParamCnt,
  7. LPWSTR * ppszArgArray,
  8. BOOL bSuccess,
  9. BOOL bDoAudit
  10. );
  11. VOID
  12. AuditEvent(
  13. DWORD dwCategoryId,
  14. DWORD dwAuditId,
  15. DWORD dwStrId,
  16. LPWSTR * ppszArguments,
  17. BOOL bSuccess,
  18. BOOL bDoAudit
  19. );
  20. VOID
  21. AuditOneArgErrorEvent(
  22. DWORD dwCategoryId,
  23. DWORD dwAuditId,
  24. DWORD dwStrId,
  25. DWORD dwErrorCode,
  26. BOOL bSuccess,
  27. BOOL bDoAudit
  28. );
  29. VOID
  30. AuditIPSecPolicyEvent(
  31. DWORD dwCategoryId,
  32. DWORD dwAuditId,
  33. DWORD dwStrId,
  34. LPWSTR pszPolicyName,
  35. BOOL bSuccess,
  36. BOOL bDoAudit
  37. );
  38. VOID
  39. AuditIPSecPolicyErrorEvent(
  40. DWORD dwCategoryId,
  41. DWORD dwAuditId,
  42. DWORD dwStrId,
  43. LPWSTR pszPolicyName,
  44. DWORD dwErrorCode,
  45. BOOL bSuccess,
  46. BOOL bDoAudit
  47. );