TRACEINFO

The TRACEINFO structure contains an array of TRACEENTRY structures, including a count of their number.

Quick Info

Header file: EDKMDB.H

typedef struct
{
  ULONG       cEntries;
  TRACEENTRY  rgtraceentry[];
}  TRACEINFO, FAR * LPTRACEINFO;

Members

cEntries
The number of TRACEENTRY structures in rgtraceentry[].
rgtraceentry[]
An array of TRACEENTRY structures, each containing all of the information for one trace.

Remarks

For additional information on this structure, see Gateway Trace Information in the Gateway Programmer's Reference Guide. For an example of how to use this structure, see the HrTraceOpenEntry function call in the ITRACE.C code sample under the EDKMAPI topic.

See Also

HrTraceGoToEntry, HrTraceGoToFirstEntry, HrTraceGotoNextEntry, TRACEENTRY