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

Function TupClearOutParams

OsiInterface/Debugger.cpp:648–659  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

646 }
647
648 void TupClearOutParams(VirtTupleLL & tuple, FunctionSignature const & signature)
649 {
650 auto head = tuple.Data.Items.Head;
651 auto cur = head->Next;
652 for (unsigned i = 0; i < tuple.Data.Items.Size; i++) {
653 if (signature.OutParamList.isOutParam(i)) {
654 cur->Item.Value.TypeId = (uint32_t)ValueType::None;
655 }
656
657 cur = cur->Next;
658 }
659 }
660
661 bool AreTypesCompatible(uint32_t type1, uint32_t type2)
662 {

Callers 1

Calls 1

isOutParamMethod · 0.80

Tested by

no test coverage detected