breakpoints
This commit is contained in:
@@ -4,11 +4,12 @@ using namespace dbgui::backend;
|
||||
|
||||
Backend::~Backend() {}
|
||||
|
||||
void Backend::send_state_change(TargetState new_state, StateChangeReason reason)
|
||||
void Backend::send_state_change(TargetState new_state, StateChangeReason reason,
|
||||
uint64_t extra)
|
||||
{
|
||||
auto msg = std::make_unique<BackToFront::Msg>(
|
||||
BackToFront::MsgType::state_change,
|
||||
BackToFront::StateChange{new_state, reason});
|
||||
BackToFront::StateChange{new_state, reason, extra});
|
||||
this->send_msg(std::move(msg));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user