Home
last modified time | relevance | path

Searched defs:sqlite3_module (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.h7295 typedef struct sqlite3_module sqlite3_module; typedef
7313 struct sqlite3_module { struct
7314 int iVersion;
7315 int (*xCreate)(sqlite3*, void *pAux,
7318 int (*xConnect)(sqlite3*, void *pAux,
7321 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7322 int (*xDisconnect)(sqlite3_vtab *pVTab);
7323 int (*xDestroy)(sqlite3_vtab *pVTab);
7324 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7325 int (*xClose)(sqlite3_vtab_cursor*);
[all …]
H A Dsqlite3.c7608 typedef struct sqlite3_module sqlite3_module; typedef
7626 struct sqlite3_module { struct
7627 int iVersion;
7628 int (*xCreate)(sqlite3*, void *pAux,
7631 int (*xConnect)(sqlite3*, void *pAux,
7634 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
7635 int (*xDisconnect)(sqlite3_vtab *pVTab);
7636 int (*xDestroy)(sqlite3_vtab *pVTab);
7637 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
7638 int (*xClose)(sqlite3_vtab_cursor*);
[all …]