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.

53 lines
976 B

  1. /*++
  2. Copyright (c) 1998-1999 Microsoft Corporation
  3. Module Name:
  4. tracedp.mof
  5. Abstract:
  6. This file defines the sample MOF class for the trace provider
  7. Revision History:
  8. --*/
  9. #pragma classflags("forceupdate")
  10. #pragma namespace ("\\\\.\\Root\\WMI")
  11. //
  12. // TRACEDP classes
  13. [Dynamic,
  14. Description("Sample Trace Data Provider") : amended,
  15. Guid("{d58c126f-b309-11d1-969e-0000f875a5bc}"),
  16. locale("MS\\0x409")
  17. ]
  18. class UMTraceDP:EventTrace
  19. {
  20. };
  21. [Dynamic,
  22. Description("Sample Data Provider") : amended,
  23. Guid("{ce5b1020-8ea9-11d0-a4ec-00a0c9062910}"),
  24. DisplayName("TraceDP") : amended,
  25. locale("MS\\0x409")
  26. ]
  27. class TraceDPData:UMTraceDP
  28. {
  29. };
  30. [Dynamic,
  31. Description("Sample String Data") : amended,
  32. EventType{1, 2},
  33. EventTypeName{"Start", "End"} : amended,
  34. locale("MS\\0x409")
  35. ]
  36. class TraceDPData_Ulong:TraceDPData
  37. {
  38. [WmiDataId(1),
  39. Description("SampleULONG") : amended,
  40. read]
  41. uint32 Data;
  42. };