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.

15 lines
316 B

  1. [WMI,
  2. Dynamic,
  3. Provider("WmiProv"),
  4. guid("{15D851F1-6539-11d1-A529-00A0C9062910}")]
  5. class WmiSampleClass : WmiBase
  6. {
  7. [key, read]
  8. string InstanceName;
  9. [read] bool Active;
  10. [WmiDataId(1)] uint32 dw1;
  11. [WmiDataId(2)] uint32 dw2;
  12. [WmiDataId(3)] uint32 dw3;
  13. [WmiDataId(4)] uint32 dw4;
  14. };