#include <sqlite3.h>
|
| int | iVersion |
| |
| int(* | xCheckReservedLock )(sqlite3_file *, int *pResOut) |
| |
| int(* | xClose )(sqlite3_file *) |
| |
| int(* | xDeviceCharacteristics )(sqlite3_file *) |
| |
| int(* | xFetch )(sqlite3_file *, sqlite3_int64 iOfst, int iAmt, void **pp) |
| |
| int(* | xFileControl )(sqlite3_file *, int op, void *pArg) |
| |
| int(* | xFileSize )(sqlite3_file *, sqlite3_int64 *pSize) |
| |
| int(* | xLock )(sqlite3_file *, int) |
| |
| int(* | xRead )(sqlite3_file *, void *, int iAmt, sqlite3_int64 iOfst) |
| |
| int(* | xSectorSize )(sqlite3_file *) |
| |
| void(* | xShmBarrier )(sqlite3_file *) |
| |
| int(* | xShmLock )(sqlite3_file *, int offset, int n, int flags) |
| |
| int(* | xShmMap )(sqlite3_file *, int iPg, int pgsz, int, void volatile **) |
| |
| int(* | xShmUnmap )(sqlite3_file *, int deleteFlag) |
| |
| int(* | xSync )(sqlite3_file *, int flags) |
| |
| int(* | xTruncate )(sqlite3_file *, sqlite3_int64 size) |
| |
| int(* | xUnfetch )(sqlite3_file *, sqlite3_int64 iOfst, void *p) |
| |
| int(* | xUnlock )(sqlite3_file *, int) |
| |
| int(* | xWrite )(sqlite3_file *, const void *, int iAmt, sqlite3_int64 iOfst) |
| |
Definition at line 755 of file sqlite3.c.
| int sqlite3_io_methods::iVersion |
| int(* sqlite3_io_methods::xCheckReservedLock)(sqlite3_file *, int *pResOut) |
| int(* sqlite3_io_methods::xDeviceCharacteristics)(sqlite3_file *) |
| int(* sqlite3_io_methods::xFileControl)(sqlite3_file *, int op, void *pArg) |
| int(* sqlite3_io_methods::xShmLock)(sqlite3_file *, int offset, int n, int flags) |
| int(* sqlite3_io_methods::xShmMap)(sqlite3_file *, int iPg, int pgsz, int, void volatile **) |
| int(* sqlite3_io_methods::xShmUnmap)(sqlite3_file *, int deleteFlag) |
The documentation for this struct was generated from the following files: