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.

49 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1998-2001 Microsoft Corporation
  3. Module Name:
  4. Wmilog.mof
  5. Abstract:
  6. This file defines the MOF class for the ACPI trace provider
  7. Author:
  8. Hanumant Yadav (hanumany) 05-Jan-2001
  9. Revision History:
  10. --*/
  11. #pragma classflags("forceupdate")
  12. #pragma namespace ("\\\\.\\Root\\WMI")
  13. //
  14. // ACPI WMI trace classes
  15. [Dynamic,
  16. Description("ACPI Driver Trace Provider") : amended,
  17. guid("{dab01d4d-2d48-477d-b1c3-daad0ce6f06b}"),
  18. locale("MS\\0x409")]
  19. class ACPITrace:EventTrace
  20. {
  21. };
  22. [Dynamic,
  23. Description("AMLI Eval Trace Provider"): amended,
  24. DisplayName("AMLIEvent"): amended,
  25. guid("{f2e0e060-bf32-4b88-b8e4-5cad15af6ae9}"),
  26. locale("MS\\0x409")]
  27. class AMLIEvalData1:ACPITrace
  28. {
  29. };
  30. [Dynamic,
  31. Description("AMLI Eval Trace Provider"): amended,
  32. EventType{1, 2},
  33. EventTypeName{"Start", "End"} : amended,
  34. locale("MS\\0x409")]
  35. class AMLIEvalData1_TypeGroup1:AMLIEvalData1
  36. {
  37. [WmiDataId(1), Description("ACPI data string") : amended, read]
  38. string DataString;
  39. };