Home
last modified time | relevance | path

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

/minix3/external/public-domain/sqlite/dist/
H A Dsqlite3.h5251 typedef struct sqlite3_module sqlite3_module; typedef
5269 struct sqlite3_module { struct
5270 int iVersion;
5271 int (*xCreate)(sqlite3*, void *pAux,
5274 int (*xConnect)(sqlite3*, void *pAux,
5277 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5278 int (*xDisconnect)(sqlite3_vtab *pVTab);
5279 int (*xDestroy)(sqlite3_vtab *pVTab);
5280 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5281 int (*xClose)(sqlite3_vtab_cursor*);
[all …]
H A Dsqlite3.c5279 typedef struct sqlite3_module sqlite3_module; typedef
5297 struct sqlite3_module { struct
5298 int iVersion;
5299 int (*xCreate)(sqlite3*, void *pAux,
5302 int (*xConnect)(sqlite3*, void *pAux,
5305 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5306 int (*xDisconnect)(sqlite3_vtab *pVTab);
5307 int (*xDestroy)(sqlite3_vtab *pVTab);
5308 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5309 int (*xClose)(sqlite3_vtab_cursor*);
[all …]