Searched defs:sqlite3_io_methods (Results 1 – 1 of 1) sorted by relevance
835 typedef struct sqlite3_io_methods sqlite3_io_methods; typedef836 struct sqlite3_io_methods { struct837 int iVersion;838 int (*xClose)(sqlite3_file*);839 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);840 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);841 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);842 int (*xSync)(sqlite3_file*, int flags);843 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);867 ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] argument