EDKEVENTCOUNT

The EDKEVENTCOUNT structure contains a record of the number of events of each type — error, warning, and information — that has been logged.

Quick Info

Header file: EDKEVENT.H

typedef struct
{
  DWORD  cError;
  DWORD  cWarning;
  DWORD  cInformation;
}  EDKEVENTCOUNT, * LPEDKEVENTCOUNT;
 

Members

cError
The number of error events.
cWarning
The number of warning events.
cInformation
The number of information events.

Remarks

For an example of how to initialize this structure, see the HrEventGetCounts function call in the CFGCODE.C code sample.

See Also

HrEventGetCounts