/**********************************************************************/ /** Microsoft Windows NT **/ /** Copyright(c) Microsoft Corp., 1993 **/ /**********************************************************************/ /* OcspIsapiCtrs.h Offset definitions for the OCSP ISAPI'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 DHCP 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 ocspisapictrs.ini definition file. OcspIsapiCtrs.INI is parsed by the LODCTR utility to load the object & counter names into the registry. */ #ifndef _OCSPISAPICTRS_H_ #define _OCSPISAPICTRS_H_ // // The OCSP ISAPI counter object. // #define OCSPISAPI_OBJECT 0 // // The individual counters. // #define OCSPISAPI_REQUESTS 2 #define OCSPISAPI_FAILEDREQ 4 #define OCSPISAPI_REQUESTPERSEC 6 #define OCSPISAPI_RESPONSETIME 8 #define OCSPISAP_CURRQUEUEDREQ 10 #define OCSPISAP_MAXQUEUEDREQ 12 #define OCSPISAP_ACTIVETHREADS 14 #define OCSPISAP_CURRCACHEDRESPONSE 16 #endif _OCSPISAPICTRS_H_