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.

67 lines
1.5 KiB

  1. //**************************************************
  2. // *** W3Core Trace Data Layout
  3. //**************************************************
  4. #pragma classflags("forceupdate")
  5. #pragma namespace ("\\\\.\\Root\\WMI")
  6. [Dynamic,
  7. Description("IIS: WWW Isapi Extension") : amended,
  8. Guid("{a1c2040e-8840-4c31-ba11-9871031a19ea}"),
  9. locale("MS\\0x409")]
  10. class IIS_IsapiTrace:EventTrace
  11. {
  12. };
  13. [Dynamic,
  14. Description("IIS User Request") : amended,
  15. Guid("{2e94e6c7-eda0-4b73-9010-2529edce1c27}"),
  16. DisplayName("W3Isapi"),
  17. locale("MS\\0x409")
  18. ]
  19. class Isapi_Trans:IIS_IsapiTrace
  20. {
  21. };
  22. [Dynamic,
  23. Description("Map RequestId to connID") : amended,
  24. EventType(1),
  25. EventTypeName("Start") : amended
  26. ]
  27. class IsapiMapRequestId:Isapi_Trans
  28. {
  29. [WmiDataId(1),
  30. Description("Request ID") : amended,
  31. read]
  32. uint64 RequestId;
  33. [WmiDataId(2),
  34. Description("connID") : amended,
  35. pointer,
  36. read]
  37. uint32 connID;
  38. [WmiDataId(3),
  39. Description("Boolean Out Of Process Flag") : amended,
  40. read]
  41. uint32 fOop;
  42. };
  43. [Dynamic,
  44. Description("Delete Isapi Context") : amended,
  45. EventType{2, 10, 11, 12, 13, 14, 15},
  46. EventTypeName{"End", "SndHdr", "SndHdrEx", "VecSnd", "ErrSnd", "SsfSnd", "SsfErr"} : amended
  47. ]
  48. class IsapiDeleteContext:Isapi_Trans
  49. {
  50. [WmiDataId(1),
  51. Description("Request ID") : amended,
  52. read]
  53. uint64 RequestId;
  54. [WmiDataId(2),
  55. Description("connID") : amended,
  56. pointer,
  57. read]
  58. uint32 connID;
  59. };