| 142 | } |
| 143 | |
| 144 | static int DeinitWithError(void* h) { |
| 145 | delete static_cast<int*>(h); |
| 146 | TVMFFIErrorSetRaisedFromCStr("RuntimeError", "Deinitialization failed"); |
| 147 | return -1; |
| 148 | } |
| 149 | |
| 150 | static int InitValue123(void** handle_addr) { |
| 151 | *handle_addr = new int(123); |
nothing calls this directly
no test coverage detected