mirror of https://github.com/lianthony/NT4.0
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.
19 lines
438 B
19 lines
438 B
#ifndef _GLOBALS_H_INCLUDED_
|
|
#define _GLOBALS_H_INCLUDED_
|
|
|
|
//
|
|
// This is the statistics index to use for unrecognized services. They do
|
|
// not get included in the statistics information.
|
|
//
|
|
|
|
#define CACHE_STATS_UNUSED_INDEX (LAST_PERF_CTR_SVC)
|
|
|
|
typedef struct {
|
|
DWORD cbMaximumSize;
|
|
INETA_CACHE_STATISTICS Stats[LAST_PERF_CTR_SVC+1];
|
|
|
|
} CONFIGURATION;
|
|
|
|
extern CONFIGURATION Configuration;
|
|
|
|
#endif /* _GLOBALS_H_INCLUDED_ */
|