MCPcopy Create free account
hub / github.com/audacity/audacity / expertOpen

Function expertOpen

lib-src/sqlite/shell.c:8894–8901  ·  view source on GitHub ↗

** Virtual table module xOpen method. */

Source from the content-addressed store, hash-verified

8892** Virtual table module xOpen method.
8893*/
8894static int expertOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
8895 int rc = SQLITE_OK;
8896 ExpertCsr *pCsr;
8897 (void)pVTab;
8898 pCsr = idxMalloc(&rc, sizeof(ExpertCsr));
8899 *ppCursor = (sqlite3_vtab_cursor*)pCsr;
8900 return rc;
8901}
8902
8903/*
8904** Virtual table module xClose method.

Callers

nothing calls this directly

Calls 1

idxMallocFunction · 0.85

Tested by

no test coverage detected