| 662 | } |
| 663 | |
| 664 | uint32_t SLgetnInstanceChildren(ModuleInstance* instance) { |
| 665 | if (!instance) return 0; |
| 666 | return instance->getNbChildren(); |
| 667 | } |
| 668 | |
| 669 | ModuleInstance* SLgetInstanceChildren(ModuleInstance* instance, uint32_t i) { |
| 670 | if (!instance) return nullptr; |
no test coverage detected