| 65 | } |
| 66 | |
| 67 | static int DeinitWithError(void* h) { |
| 68 | delete static_cast<int*>(h); |
| 69 | TVMFFIErrorSetRaisedFromCStr("RuntimeError", "Deinitialization failed"); |
| 70 | return -1; |
| 71 | } |
| 72 | |
| 73 | static int InitValue123(void** handle_addr) { |
| 74 | *handle_addr = new int(123); |
nothing calls this directly
no test coverage detected