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

Method SendDatabaseRow

BG3Extender/Osiris/Debugger/DebugMessages.cpp:569–580  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

567 }
568
569 void DebugMessageHandler::SendDatabaseRow(uint32_t databaseId, TupleVec * row)
570 {
571 BackendToDebugger msg;
572 auto rowMsg = msg.mutable_databaserow();
573 rowMsg->set_database_id(databaseId);
574
575 auto msgRow = rowMsg->add_row();
576 MakeMsgTuple(*msgRow, *row);
577
578 Send(msg);
579 DEBUG(" <-- BkDatabaseRow()");
580 }
581
582 void DebugMessageHandler::SendEndDatabaseContents(uint32_t databaseId)
583 {

Callers 1

GetDatabaseContentsMethod · 0.80

Calls 1

MakeMsgTupleFunction · 0.85

Tested by

no test coverage detected