FTEQW
Documentation of the FTE engine source tree.
sqlite3_io_methods Struct Reference

#include <sqlite3.h>

Public Attributes

int iVersion
 
int(* xClose )(sqlite3_file *)
 
int(* xRead )(sqlite3_file *, void *, int iAmt, sqlite3_int64 iOfst)
 
int(* xWrite )(sqlite3_file *, const void *, int iAmt, sqlite3_int64 iOfst)
 
int(* xTruncate )(sqlite3_file *, sqlite3_int64 size)
 
int(* xSync )(sqlite3_file *, int flags)
 
int(* xFileSize )(sqlite3_file *, sqlite3_int64 *pSize)
 
int(* xLock )(sqlite3_file *, int)
 
int(* xUnlock )(sqlite3_file *, int)
 
int(* xCheckReservedLock )(sqlite3_file *, int *pResOut)
 
int(* xFileControl )(sqlite3_file *, int op, void *pArg)
 
int(* xSectorSize )(sqlite3_file *)
 
int(* xDeviceCharacteristics )(sqlite3_file *)
 
int(* xShmMap )(sqlite3_file *, int iPg, int pgsz, int, void volatile **)
 
int(* xShmLock )(sqlite3_file *, int offset, int n, int flags)
 
void(* xShmBarrier )(sqlite3_file *)
 
int(* xShmUnmap )(sqlite3_file *, int deleteFlag)
 

Member Data Documentation

◆ iVersion

int sqlite3_io_methods::iVersion

◆ xCheckReservedLock

int(* sqlite3_io_methods::xCheckReservedLock) (sqlite3_file *, int *pResOut)

◆ xClose

int(* sqlite3_io_methods::xClose) (sqlite3_file *)

◆ xDeviceCharacteristics

int(* sqlite3_io_methods::xDeviceCharacteristics) (sqlite3_file *)

◆ xFileControl

int(* sqlite3_io_methods::xFileControl) (sqlite3_file *, int op, void *pArg)

◆ xFileSize

int(* sqlite3_io_methods::xFileSize) (sqlite3_file *, sqlite3_int64 *pSize)

◆ xLock

int(* sqlite3_io_methods::xLock) (sqlite3_file *, int)

◆ xRead

int(* sqlite3_io_methods::xRead) (sqlite3_file *, void *, int iAmt, sqlite3_int64 iOfst)

◆ xSectorSize

int(* sqlite3_io_methods::xSectorSize) (sqlite3_file *)

◆ xShmBarrier

void(* sqlite3_io_methods::xShmBarrier) (sqlite3_file *)

◆ 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

int(* sqlite3_io_methods::xTruncate) (sqlite3_file *, sqlite3_int64 size)

◆ xUnlock

int(* sqlite3_io_methods::xUnlock) (sqlite3_file *, int)

◆ xWrite

int(* sqlite3_io_methods::xWrite) (sqlite3_file *, const void *, int iAmt, sqlite3_int64 iOfst)

The documentation for this struct was generated from the following file: