#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) |
| |
sqlite3.h の 781 行目に定義があります。
◆ iVersion
| int sqlite3_io_methods::iVersion |
◆ xCheckReservedLock
| int(* sqlite3_io_methods::xCheckReservedLock) (sqlite3_file *, int *pResOut) |
◆ xClose
◆ xDeviceCharacteristics
| int(* sqlite3_io_methods::xDeviceCharacteristics) (sqlite3_file *) |
◆ xFetch
◆ xFileControl
| int(* sqlite3_io_methods::xFileControl) (sqlite3_file *, int op, void *pArg) |
◆ xFileSize
◆ xLock
◆ xRead
◆ xSectorSize
◆ xShmBarrier
◆ xShmLock
| int(* sqlite3_io_methods::xShmLock) (sqlite3_file *, int offset, int n, int flags) |
◆ xShmMap
| int(* sqlite3_io_methods::xShmMap) (sqlite3_file *, int iPg, int pgsz, int, void volatile **) |
◆ xShmUnmap
| int(* sqlite3_io_methods::xShmUnmap) (sqlite3_file *, int deleteFlag) |
◆ xSync
| int(* sqlite3_io_methods::xSync) (sqlite3_file *, int flags) |
◆ xTruncate
◆ xUnfetch
◆ xUnlock
◆ xWrite
この構造体詳解は次のファイルから抽出されました:
- C:/Users/masah/source/repos/KumaKuma0421/Alternate/DBLibrary/SQLite3/sqlite3.h