/**********************************************************************/ /** Microsoft Windows NT **/ /** Copyright(c) Microsoft Corp., 1993 **/ /**********************************************************************/ /* certsvcctrs.h Offset definitions for the Certificate Server's counter objects & counters. These offsets *must* start at 0 and be multiples of 2. In the OpenDhcpPerformanceData procedure, they will be added to the Certificate Server's "First Counter" and "First Help" values in order to determine the absolute location of the counter & object names and corresponding help text in the registry. This file is used by the certsvcctrs.ini definition file. certsvcctrs.ini is parsed by the LODCTR utility to load the object & counter names into the registry. */ #ifndef _CERTSVCCTRS_H_ #define _CERTSVCCTRS_H_ // // The Certificate Server counter object. // #define CERTSVC_SERVER_OBJECT 0 // // The individual counters. // #define CERTSVC_SERVER_REQUESTS 2 #define CERTSVC_SERVER_REQUESTTIME 4 #define CERTSVC_SERVER_RETRIEVEREQ 6 #define CERTSVC_SERVER_RETRIEVETIME 8 #define CERTSVC_SERVER_FAILEDREQ 10 #define CERTSVC_SERVER_ISSUEDREQ 12 #define CERTSVC_SERVER_PENDINGREQ 14 #define CERTSVC_SERVER_SIGNINGTIME 16 #define CERTSVC_SERVER_POLICYMODULETIME 18 #define CERTSVC_SERVER_CHALLENGERESPONSES 20 #define CERTSVC_SERVER_CHALLENGERESPONSETIME 22 #define CERTSVC_SERVER_SIGNEDCERTIFICATETIMESTAMPLISTS 24 #define CERTSVC_SERVER_SIGNEDCERTIFICATETIMESTAMPLISTTIME 26 // // The Certificate Server Connections counter object // #define CERTSVC_SERVER_CONNECTIONS_OBJECT 28 // // The individual counters. // #define CERTSVC_SERVER_CONNECTIONS_ACTIVE 30 #endif _CERTSVCCTRS_H_