Searched defs:sqlite3_vfs (Results 1 – 1 of 1) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | sqlite.h.in | 1455 typedef struct sqlite3_vfs sqlite3_vfs; typedef 1457 struct sqlite3_vfs { struct 1461 sqlite3_vfs *pNext; /* Next registered VFS */ argument 1464 int (*xOpen)(sqlite3_vfs*, sqlite3_filename zName, sqlite3_file*, argument 1469 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); argument 1472 void (*xDlClose)(sqlite3_vfs*, void*); argument 1473 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); argument 1474 int (*xSleep)(sqlite3_vfs*, int microseconds); argument 1475 int (*xCurrentTime)(sqlite3_vfs*, double*); argument 1476 int (*xGetLastError)(sqlite3_vfs*, int, char *); argument [all …]
|