MCPcopy Create free account
hub / github.com/Norbyte/bg3se / SetGlobalBreakpoints

Method SetGlobalBreakpoints

BG3Extender/Osiris/Debugger/Debugger.cpp:71–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69 {}
70
71 ResultCode BreakpointManager::SetGlobalBreakpoints(GlobalBreakpointType breakpoints)
72 {
73 if (breakpoints & ~GlobalBreakpointTypeAll) {
74 WARN("Debugger::SetGlobalBreakpoints(): Unsupported breakpoint type set: %08x", breakpoints);
75 return ResultCode::UnsupportedBreakpointType;
76 }
77
78 DEBUG("Debugger::SetGlobalBreakpoints(): Set to %08x", breakpoints);
79 globalBreakpoints_ = breakpoints;
80 return ResultCode::Success;
81 }
82
83 void BreakpointManager::BeginUpdatingNodeBreakpoints()
84 {

Callers 2

DebuggerMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected