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

Method HandleGetDatabaseContents

BG3Extender/Osiris/Debugger/DebugMessages.cpp:393–408  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

391 }
392
393 void DebugMessageHandler::HandleGetDatabaseContents(uint32_t seq, DbgGetDatabaseContents const & req)
394 {
395 DEBUG(" --> DbgGetDatabaseContents(%d)", req.database_id());
396
397 ResultCode rc;
398 if (!debugger_) {
399 WARN("GetDatabaseContents: Not attached to story debugger!");
400 rc = ResultCode::NoDebuggee;
401 }
402 else
403 {
404 rc = debugger_->GetDatabaseContents(req.database_id());
405 }
406
407 SendResult(seq, rc);
408 }
409
410 void DebugMessageHandler::HandleContinue(uint32_t seq, DbgContinue const & req)
411 {

Callers

nothing calls this directly

Calls 1

GetDatabaseContentsMethod · 0.80

Tested by

no test coverage detected