WER_REPORT_METADATA_V1 structure (werapi.h)

Contains information about an error report generated by Windows Error Reporting (WER).

Syntax

typedef struct _WER_REPORT_METADATA_V1 {
  WER_REPORT_SIGNATURE Signature;
  GUID                 BucketId;
  GUID                 ReportId;
  FILETIME             CreationTime;
  ULONGLONG            SizeInBytes;
} WER_REPORT_METADATA_V1, *PWER_REPORT_METADATA_V1;

Members

Signature

A structure containing the signature of the report. The signature consists of the event name and event parameters present.

BucketId

A hash of the signature. Can be used to cross reference with other crash reports with the same signature (currently not implemented).

ReportId

A locally unique identifier for the report.

CreationTime

A UTC time stamp of when the report was created.

SizeInBytes

The size (on disk) of the individual report and its constituent files. This value only counts files directly contained in a report.

Requirements

Requirement Value
Header werapi.h

See also

Windows Error Reporting