| 16 | } |
| 17 | |
| 18 | void EMSCRIPTEN_KEEPALIVE libprogress_progress_handler( |
| 19 | sqlite3* db, |
| 20 | int nOps, |
| 21 | int xProgress, |
| 22 | void* pApp) { |
| 23 | sqlite3_progress_handler( |
| 24 | db, |
| 25 | nOps, |
| 26 | xProgress ? &libprogress_xProgress : NULL, |
| 27 | pApp); |
| 28 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…