The EDKEVENTCOUNT structure contains a record of the number of events of each type — error, warning, and information — that has been logged.
| Header file: | EDKEVENT.H | 
typedef struct
{
  DWORD  cError;
  DWORD  cWarning;
  DWORD  cInformation;
}  EDKEVENTCOUNT, * LPEDKEVENTCOUNT;
 For an example of how to initialize this structure, see the HrEventGetCounts function call in the CFGCODE.C code sample.