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.

23 lines
564 B

  1. [WMI, Dynamic, Provider("WMIProv"),
  2. guid("{F4A8027A-23B7-11d1-9ED9-00A0C9010057}"),
  3. localeid(0x409),
  4. WmiExpense(1),
  5. Description("Statistics for a Remote NDIS device)")]
  6. class RNDISMPStatisticsOID
  7. {
  8. [key, read]
  9. string InstanceName; // Instance name returned from WMI
  10. [read]
  11. boolean Active;
  12. [read,
  13. Description("Number of array elements."),
  14. WmiDataId(1)] uint32 NumberElements;
  15. [read,
  16. Description("Query this array to get statistics."),
  17. WmiDataId(2),
  18. WmiSizeIs("NumberElements")] uint32 StatsArray[];
  19. };