IMAGEHLP_CBA_EVENTW structure (dbghelp.h)

Contains information about a debugging event.

Syntax

typedef struct _IMAGEHLP_CBA_EVENTW {
  DWORD  severity;
  DWORD  code;
  PCWSTR desc;
  PVOID  object;
} IMAGEHLP_CBA_EVENTW, *PIMAGEHLP_CBA_EVENTW;

Members

severity

The event severity. This parameter can be one of the following values.

Value Meaning
sevInfo
0
Informational event.
sevProblem
1
Reserved for future use.
sevAttn
2
Reserved for future use.
sevFatal
3
Reserved for future use.

code

This member is reserved for future use.

desc

A text description of the error.

object

This member is reserved for future use.

Remarks

Note

The dbghelp.h header defines IMAGEHLP_CBA_EVENT as an alias that automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that is not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.

Requirements

Requirement Value
Header dbghelp.h
Redistributable DbgHelp.dll 6.1 or later

See also

SymRegisterCallbackProc64

SymbolServerCallback