Add vpi_handle_multi to libvpi

This commit is contained in:
mole99 2023-07-20 08:43:51 +02:00
parent 7beadb92f8
commit f6e4b6d381
1 changed files with 5 additions and 0 deletions

View File

@ -60,6 +60,11 @@ vpiHandle vpi_handle_by_index(vpiHandle ref, PLI_INT32 idx)
assert(vpip_routines);
return vpip_routines->handle_by_index(ref, idx);
}
vpiHandle vpi_handle_multi(PLI_INT32 type, vpiHandle ref1, vpiHandle ref2)
{
assert(vpip_routines);
return vpip_routines->handle_multi(type, ref1, ref2);
}
// for traversing relationships