mirror of https://github.com/tongzx/nt5src
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
15 lines
316 B
[WMI,
|
|
Dynamic,
|
|
Provider("WmiProv"),
|
|
guid("{15D851F1-6539-11d1-A529-00A0C9062910}")]
|
|
class WmiSampleClass : WmiBase
|
|
{
|
|
[key, read]
|
|
string InstanceName;
|
|
[read] bool Active;
|
|
|
|
[WmiDataId(1)] uint32 dw1;
|
|
[WmiDataId(2)] uint32 dw2;
|
|
[WmiDataId(3)] uint32 dw3;
|
|
[WmiDataId(4)] uint32 dw4;
|
|
};
|