| 62 | } |
| 63 | |
| 64 | char** engine_getOutputList(void* engine) { |
| 65 | Engine* e = static_cast<Engine*>(engine); |
| 66 | vector<string> outputs = e->getOutputs(); |
| 67 | return engine_buildStrList(outputs); |
| 68 | } |
| 69 | |
| 70 | void engine_freeIOList(char** strList) { |
| 71 | char** ptr = strList; |
nothing calls this directly
no test coverage detected