#ifndef _NTMISC_H
//
// Statistics.
//
typedef struct _AHC_MAIN_STATISTICS
{
ULONG Lookup; // Count of lookup calls.
ULONG Remove; // Count of remove calls.
ULONG Update; // Count of update calls.
ULONG Clear; // Count of clear calls.
ULONG SnapStatistics; // Count of snap statistics calls.
ULONG SnapCache; // Count of snap store calls.
} AHC_MAIN_STATISTICS, *PAHC_MAIN_STATISTICS;
View code on GitHub
No description available.