Leaked source code of windows server 2003
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.

153 lines
3.2 KiB

  1. ;/*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. ;
  3. ;Copyright (c) 1991 Microsoft Corporation
  4. ;
  5. ;Module Name:
  6. ;
  7. ; ntaudit.mc
  8. ;
  9. ;Abstract:
  10. ;
  11. ; Constant definitions for the NT Audit Event Messages.
  12. ;
  13. ;Author:
  14. ;
  15. ; Jim Kelly (JimK) 30-Mar-1992
  16. ;
  17. ;Revision History:
  18. ;
  19. ;Notes:
  20. ;
  21. ; The .h and .res forms of this file are generated from the .mc
  22. ; form of the file (private\ntos\se\nls\ntaudit.mc). Please make
  23. ; all changes to the .mc form of the file.
  24. ;
  25. ;
  26. ;
  27. ;--*/
  28. ;
  29. ;#ifndef _NTAUDIT_
  30. ;#define _NTAUDIT_
  31. ;
  32. ;/*lint -e767 */ // Don't complain about different definitions // winnt
  33. MessageIdTypedef=ULONG
  34. SeverityNames=(None=0x0)
  35. FacilityNames=(None=0x0)
  36. MessageId=0x0000
  37. Language=English
  38. Unused message ID
  39. .
  40. ;// Message ID 0 is unused - just used to flush out the diagram
  41. ;
  42. ;/////////////////////////////////////////////////////////////////////////
  43. ;// //
  44. ;// Logon Messages Follow //
  45. ;// //
  46. ;// //
  47. ;/////////////////////////////////////////////////////////////////////////
  48. ;
  49. ;////////////////////////////////////////////////
  50. ;//
  51. ;// Module Catagory: SE_ADT_SUCCESSFUL_LOGON
  52. ;//
  53. ;// Event Type: Successful Logon
  54. ;//
  55. ;// Parameter Strings:
  56. ;//
  57. ;// String1 - User name
  58. ;//
  59. ;// String2 - LogonSessionLuid.HighPart (32-bit value)
  60. ;//
  61. ;// String3 - LogonSessionLuid.LowPart (32-bit value)
  62. ;//
  63. MessageId=0x0001
  64. SymbolicName=SE_EVENTID_SUCCESSFUL_LOGON
  65. Language=English
  66. Successful Logon -
  67. User: %S
  68. Logon session ID: {%ld,%ld}.
  69. .
  70. ;////////////////////////////////////////////////
  71. ;//
  72. ;// Module Catagory: SE_ADT_UNSUCCESSFUL_LOGON
  73. ;//
  74. ;// Event Type: Unknown user/password logon attempt
  75. ;//
  76. ;// Parameter Strings:
  77. ;//
  78. ;// String1 - User name
  79. ;//
  80. ;//
  81. ;//
  82. MessageId=0x0002
  83. SymbolicName=SE_EVENTID_UNKNOWN_USER_OR_PWD
  84. Language=English
  85. Failed Logon -
  86. User: %S
  87. Reason: Unknown user name or password.
  88. .
  89. ;////////////////////////////////////////////////
  90. ;//
  91. ;// Module Catagory: SE_ADT_UNSUCCESSFUL_LOGON
  92. ;//
  93. ;// Event Type: Time restriction logon failure
  94. ;//
  95. ;// Parameter Strings:
  96. ;//
  97. ;// String1 - User name
  98. ;//
  99. ;//
  100. ;//
  101. MessageId=0x0003
  102. SymbolicName=SE_EVENTID_ACCOUNT_TIME_RESTR
  103. Language=English
  104. Failed Logon -
  105. User: %S
  106. Reason: Account time restriction violation.
  107. .
  108. ;////////////////////////////////////////////////
  109. ;//
  110. ;// Module Catagory: SE_ADT_UNSUCCESSFUL_LOGON
  111. ;//
  112. ;// Event Type: Account Disabled
  113. ;//
  114. ;// Parameter Strings:
  115. ;//
  116. ;// String1 - User name
  117. ;//
  118. ;//
  119. ;//
  120. MessageId=0x0004
  121. SymbolicName=SE_EVENTID_ACCOUNT_DISABLED
  122. Language=English
  123. Failed Logon -
  124. User: %S
  125. Reason: Account Disabled.
  126. .
  127. ;/*lint +e767 */ // Resume checking for different macro definitions // winnt
  128. ;
  129. ;
  130. ;#endif // _NTAUDIT_