MCPcopy Create free account
hub / github.com/Norbyte/ositools / MakeMsgTuple

Function MakeMsgTuple

OsiInterface/DebugMessages.cpp:49–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47 }
48
49 void MakeMsgTuple(MsgTuple & msgTuple, TupleLL const & tuple)
50 {
51 auto head = tuple.Items.Head;
52 auto col = head->Next;
53 while (col != head) {
54 auto column = msgTuple.add_column();
55 MakeMsgColumn(*column, col->Item.Value);
56 col = col->Next;
57 }
58 }
59
60 void MakeMsgTuple(MsgTuple & msgTuple, TuplePtrLL const & tuple)
61 {

Callers 4

MakeMsgCallStackFunction · 0.85
SendDatabaseRowMethod · 0.85
SendEvaluateRowMethod · 0.85

Calls 1

MakeMsgColumnFunction · 0.85

Tested by

no test coverage detected