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.
25 lines
319 B
25 lines
319 B
|
|
|
|
#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;
|
|
};
|