1.Dd January 24, 2024 2.Dt SQLITE3_PCACHE_PAGE 3 3.Os 4.Sh NAME 5.Nm sqlite3_pcache_page , 6.Nm sqlite3_pcache_page 7.Nd custom page cache object 8.Sh SYNOPSIS 9.In sqlite3.h 10.Vt typedef struct sqlite3_pcache_page sqlite3_pcache_page; 11.Vt struct sqlite3_pcache_page ; 12.Sh DESCRIPTION 13The sqlite3_pcache_page object represents a single page in the page 14cache. 15The page cache will allocate instances of this object. 16Various methods of the page cache use pointers to instances of this 17object as parameters or as their return value. 18.Pp 19See sqlite3_pcache_methods2 for additional information. 20.Sh IMPLEMENTATION NOTES 21These declarations were extracted from the 22interface documentation at line 8893. 23.Bd -literal 24typedef struct sqlite3_pcache_page sqlite3_pcache_page; 25struct sqlite3_pcache_page { 26 void *pBuf; /* The content of the page */ 27 void *pExtra; /* Extra information associated with the page */ 28}; 29.Ed 30.Sh SEE ALSO 31.Xr sqlite3_pcache_methods2 3 32