windows-nt/Source/XPSP1/NT/admin/wmi/wbem/winmgmt/ntperfclient/test.mof

25 lines
319 B
Plaintext
Raw Normal View History

2020-09-26 03:20:57 -05:00
#pragma namespace("\\\\.\\root\\ntperfdata")
[perf]
class MyPerfCounter
{
[key, label] uint32 CounterID;
uint32 Value1;
uint64 Value2;
};
instance of MyPerfCounter
{
CounterID = 1;
Value1 = 101;
Value2 = 1001;
};
instance of MyPerfCounter
{
CounterID = 2;
Value1 = 202;
Value2 = 2002;
};