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.

36 lines
809 B

  1. //
  2. // Wmi internal classes
  3. class WMIEvent : __ExtrinsicEvent
  4. {
  5. };
  6. [
  7. Dynamic,
  8. Provider("WMIProv"),
  9. WMI,
  10. Description("Scsiport Info"),
  11. guid("{d69fad96-c9a3-4ed0-b98b-47c27feac68c}"),
  12. locale("MS\\0x409")
  13. ]
  14. class Scsiport_SenseData: WMIEvent
  15. {
  16. [key, read]
  17. string InstanceName;
  18. [read]
  19. boolean Active;
  20. [read, WmidataId(1)] uint8 AdapterDeviceName[32];
  21. [read, WmidataId(2)] uint32 Port;
  22. [read, WmidataId(3)] uint8 SrbFunction;
  23. [read, WmidataId(4)] uint8 SrbStatus;
  24. [read, WmidataId(5)] uint8 PathId;
  25. [read, WmidataId(6)] uint8 TargetId;
  26. [read, WmidataId(7)] uint8 Lun;
  27. [read, WmidataId(8)] uint8 CmdDescriptorBlock[16];
  28. [read, WmidataId(9)] uint8 SenseData[255];
  29. };