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