Source code of Windows XP (NT5)
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.

31 lines
557 B

  1. [abstract]
  2. class MSystems_Trueffs
  3. {
  4. };
  5. [Dynamic, Provider("WMIProv"), WMI,
  6. Description("Flash Disk Info"),
  7. guid("{d9a8f150-f830-11d2-b572-00c04f65b3d9}"),
  8. locale("MS\\0x409")]
  9. class MSystems_TrueffsDeviceInfo : MSystems_Trueffs
  10. {
  11. [key, read]
  12. string InstanceName;
  13. [read] boolean Active;
  14. [WmiDataId(1),
  15. Description("Flash Disk"),
  16. read]
  17. uint32 number;
  18. [WmiDataId(2),
  19. Description("Window Address"),
  20. read]
  21. uint32 address;
  22. [WmiDataId(3),
  23. Description("Window Size"),
  24. read]
  25. uint32 size;
  26. };