ScriptDebugEventInformation structure (dbgmodel.h)
A struct containing information about a particular debug event.
Syntax
struct ScriptDebugEventInformation {
ScriptDebugEvent DebugEvent;
ScriptDebugPosition EventPosition;
ScriptDebugPosition EventSpanEnd;
union {
struct {
bool IsUncaught;
} ExceptionInformation;
struct {
ULONG64 BreakpointId;
} BreakpointInformation;
} u;
};
Members
DebugEvent
EventPosition
The line/column of script at which the debug event occurred (0 values : cannot determine)
EventSpanEnd
The ending line/column of script at which the debug event occurred (0 values : cannot determine)
u
u.ExceptionInformation
u.ExceptionInformation.IsUncaught
u.BreakpointInformation
u.BreakpointInformation.BreakpointId
Requirements
Requirement | Value |
---|---|
Header | dbgmodel.h |