| 5 | cs(env) {} |
| 6 | |
| 7 | static void Cleanup(Addon* addon) { |
| 8 | for (Database* db : addon->dbs) db->CloseHandles(); |
| 9 | addon->dbs.clear(); |
| 10 | delete addon; |
| 11 | } |
| 12 | |
| 13 | inline sqlite3_uint64 NextId() { |
| 14 | return next_id++; |
nothing calls this directly
no test coverage detected